2023-12-12 06:05:08 +05:30
|
|
|
name: Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_run:
|
|
|
|
workflows:
|
|
|
|
- Build
|
|
|
|
types:
|
|
|
|
- completed
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
2023-12-12 07:07:52 +05:30
|
|
|
dockerhub:
|
|
|
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
|
|
|
2023-12-12 06:05:08 +05:30
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- id: meta
|
|
|
|
name: Docker meta
|
|
|
|
uses: docker/metadata-action@v5
|
|
|
|
with:
|
|
|
|
images: ${{ github.repository }}
|
|
|
|
tags: |
|
|
|
|
type=semver,pattern={{version}}
|
|
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
|
|
type=semver,pattern={{major}}
|
2023-12-12 07:00:27 +05:30
|
|
|
type=edge,branch=${{ github.event.repository.default_branch }}
|
2023-12-12 06:05:08 +05:30
|
|
|
|
2023-12-13 05:39:21 +05:30
|
|
|
- id: version
|
|
|
|
name: Set up build version
|
|
|
|
run: |
|
|
|
|
if [[ $GITHUB_REF_TYPE == "tag" ]]; then
|
|
|
|
VERSION=${GITHUB_REF#refs/tags/}
|
|
|
|
else
|
|
|
|
BRANCH_NAME=${GITHUB_REF#refs/heads/}
|
|
|
|
SHORT_SHA=$(git rev-parse --short $GITHUB_SHA)
|
|
|
|
VERSION="${BRANCH_NAME}-${SHORT_SHA}"
|
|
|
|
fi
|
|
|
|
echo "version=$VERSION" >> $GITHUB_ENV
|
|
|
|
|
2023-12-12 06:36:00 +05:30
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
|
2023-12-12 06:05:08 +05:30
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
|
|
|
|
- name: Log in to the Container registry
|
|
|
|
uses: docker/login-action@v3
|
|
|
|
with:
|
2023-12-12 06:43:19 +05:30
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
2023-12-12 06:05:08 +05:30
|
|
|
|
|
|
|
- name: Build and Push
|
|
|
|
uses: docker/build-push-action@v5
|
|
|
|
with:
|
2023-12-12 06:51:22 +05:30
|
|
|
push: true
|
2023-12-12 06:05:08 +05:30
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
2023-12-12 06:36:00 +05:30
|
|
|
platforms: linux/amd64,linux/arm64
|
2023-12-13 05:39:21 +05:30
|
|
|
build-args: |
|
|
|
|
VERSION=${{ steps.version.output.version }}
|
|
|
|
COMMIT=${{ github.ref }}
|