AI language #154
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: Publish Docker image | |
on: | |
release: | |
types: [published] | |
jobs: | |
push_to_registry: | |
name: Push Docker image to Docker Hub | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v3 | |
# Workaround: https://github.com/docker/build-push-action/issues/461 | |
- name: Setup Docker buildx | |
uses: docker/[email protected] | |
- name: Set up QEMU | |
uses: docker/[email protected] | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Get latest git tag | |
id: latest_tag | |
uses: 'WyriHaximus/github-action-get-previous-tag@v1' | |
with: | |
fallback: no-tag | |
- name: Get major version | |
id: major_version | |
run: | | |
echo "version=$(echo ${{ steps.latest_tag.outputs.tag }} | cut -d'.' -f1)" >> $GITHUB_OUTPUT | |
- name: Get minor version | |
id: minor_version | |
run: | | |
echo "version=$(echo ${{ steps.latest_tag.outputs.tag }} | cut -d'.' -f1,2)" >> $GITHUB_OUTPUT | |
- name: Push to Docker Hub (latest) | |
uses: docker/build-push-action@v4 | |
with: | |
platforms: linux/amd64, linux/arm64 | |
push: true | |
tags: hemmeligapp/hemmelig:latest | |
- name: Push to Docker Hub (full version) | |
uses: docker/build-push-action@v4 | |
with: | |
platforms: linux/amd64, linux/arm64 | |
push: true | |
tags: hemmeligapp/hemmelig:${{ steps.latest_tag.outputs.tag }} | |
- name: Push to Docker Hub (minor version) | |
uses: docker/build-push-action@v4 | |
with: | |
platforms: linux/amd64, linux/arm64 | |
push: true | |
tags: hemmeligapp/hemmelig:${{ steps.minor_version.outputs.version }} | |
- name: Push to Docker Hub (major version) | |
uses: docker/build-push-action@v4 | |
with: | |
platforms: linux/amd64, linux/arm64 | |
push: true | |
tags: hemmeligapp/hemmelig:${{ steps.major_version.outputs.version }} |