This repository was archived by the owner on Oct 3, 2025. It is now read-only.
Merge pull request #12 from jkaninda/develop #8
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: | |
- v0.** | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.REGISTRY_USERNAME }} | |
password: ${{ secrets.REGISTRY_PASSWORD }} | |
- | |
name: Get the tag name | |
id: get_tag_name | |
run: | | |
# Extract tag name and remove "v" if present | |
TAG_NAME="${GITHUB_REF#refs/tags/}" | |
VERSION="${TAG_NAME#v}" | |
echo "VERSION=${VERSION}" >> $GITHUB_ENV | |
echo BUILD_TIME=$(date) >> ${GITHUB_ENV} | |
- | |
name: Build and push | |
uses: docker/build-push-action@v3 | |
with: | |
push: true | |
file: "./Dockerfile" | |
platforms: linux/amd64,linux/arm64,linux/arm/v7 | |
tags: | | |
"${{vars.BUILDKIT_IMAGE}}:${{ env.VERSION }}" | |
"${{vars.BUILDKIT_IMAGE}}:latest" | |