Skip to content

Commit

Permalink
chore(release): add release yaml to publish tagged images (#16)
Browse files Browse the repository at this point in the history
This commit adds release.yml for creating and publishing
images created for release

Signed-off-by: mittachaitu <[email protected]>
  • Loading branch information
sai chaithanya authored Nov 9, 2021
1 parent cdef6be commit 00efeae
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
uses: actions/checkout@v2

- name: Set Image Org
# sets the default IMAGE_ORG to openebs
# sets the default IMAGE_ORG to mayadataio
run: |
[ -z "${{ secrets.IMAGE_ORG }}" ] && IMAGE_ORG=mayadataio || IMAGE_ORG=${{ secrets.IMAGE_ORG}}
echo "IMAGE_ORG=${IMAGE_ORG}" >> $GITHUB_ENV
Expand Down
91 changes: 91 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
# Copyright 2021 The MayaData Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

name: release

on:
release:
types:
- 'created'

jobs:
volume-event-controller:
if: contains(github.ref, 'tags/v')
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Set Image Org
# sets the default IMAGE_ORG to mayadataio
run: |
[ -z "${{ secrets.IMAGE_ORG }}" ] && IMAGE_ORG=mayadataio || IMAGE_ORG=${{ secrets.IMAGE_ORG}}
echo "IMAGE_ORG=${IMAGE_ORG}" >> $GITHUB_ENV
- name: Set Release Tag
run: |
TAG="${GITHUB_REF#refs/*/v}"
echo "RELEASE_TAG=${TAG}" >> $GITHUB_ENV
- name: Set Build Date
id: date
run: |
echo "::set-output name=DATE::$(date -u +'%Y-%m-%dT%H:%M:%S%Z')"
- name: Docker meta
id: docker_meta
uses: crazy-max/ghaction-docker-meta@v1
with:
# add each registry to which the image needs to be pushed here
images: |
${{ env.IMAGE_ORG }}/volume-events-exporter
tag-latest: true
tag-semver: |
{{version}}
- name: Print Tags
run: |
echo "${{ steps.docker_meta.outputs.tags }}"
echo "RELEASE TAG: ${RELEASE_TAG}"
- name: Setup QEMU
uses: docker/setup-qemu-action@v1
with:
platforms: all

- name: Setup Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
with:
version: v0.5.1

- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and Push Image
uses: docker/build-push-action@v2
with:
context: .
file: ./buildscripts/volume-events-exporter/volume-event-exporter.Dockerfile
push: true
platforms: linux/amd64, linux/arm64, linux/arm/v7, linux/ppc64le
tags: |
${{ steps.docker_meta.outputs.tags }}
build-args: |
DBUILD_DATE=${{ steps.date.outputs.DATE }}
DBUILD_REPO_URL=https://github.com/mayadata-io/volume-events-exporter
DBUILD_SITE_URL=https://mayadata.io

0 comments on commit 00efeae

Please sign in to comment.