Merge pull request #489 from traPtitech/fix/daily-date #8
Workflow file for this run
This file contains 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 Image (production) | |
on: | |
push: | |
tags: | |
- v[0-9]+.[0-9]+.[0-9]+ | |
env: | |
IMAGE_NAME: knoq | |
jobs: | |
image: | |
name: Build Docker Image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set IMAGE_TAG env | |
run: echo "IMAGE_TAG=$(echo ${GITHUB_REF:11})" >> $GITHUB_ENV | |
- uses: actions/checkout@v4 | |
- name: Set KNOQ_VERSION env | |
run: echo "KNOQ_VERSION=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV | |
- name: Set KNOQ_REVISION env | |
run: echo "KNOQ_REVISION=$(git rev-parse --short HEAD)" >> $GITHUB_ENV | |
- 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: | |
registry: ghcr.io | |
username: traptitech | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: true | |
platforms: linux/amd64,linux/arm64 | |
build-args: | | |
knoq_version=${{ env.KNOQ_VERSION }} | |
knoq_revision=${{ env.KNOQ_REVISION }} | |
tags: | | |
ghcr.io/traptitech/${{ env.IMAGE_NAME }}:latest | |
ghcr.io/traptitech/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }} |