Docker Hub #61
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: Docker Hub | |
on: | |
release: | |
types: [ published ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_USER_NAME }} | |
password: ${{ secrets.DOCKER_ACCESS_TOKEN }} | |
- name: Extract the tag | |
id: tag | |
run: echo ::set-output name=TAG::${GITHUB_REF/refs\/tags\/v/} | |
- name: Build and push the latest image | |
id: docker_build_latest | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./docker | |
file: "./docker/Dockerfile-Ubuntu20" | |
build-args: | | |
"RELEASE_VERSION=${{ steps.tag.outputs.TAG }}" | |
platforms: linux/amd64,linux/arm64 | |
allow: network.host | |
github-token: ${{ github.token }} | |
tags: | | |
baxtree/subaligner:latest | |
baxtree/subaligner:${{ steps.tag.outputs.TAG }} | |
baxtree/subaligner:${{ steps.tag.outputs.TAG }}.u20 | |
push: true | |
- name: Build and push the Ubuntu 22 image | |
id: docker_build_u22 | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./docker | |
file: "./docker/Dockerfile-Ubuntu22" | |
build-args: | | |
"RELEASE_VERSION=${{ steps.tag.outputs.TAG }}" | |
platforms: linux/amd64,linux/arm64 | |
allow: network.host | |
github-token: ${{ github.token }} | |
tags: baxtree/subaligner:${{ steps.tag.outputs.TAG }}.u22 | |
push: true | |
- name: Build and push the Fedora 34 image | |
id: docker_build_fed34 | |
uses: docker/build-push-action@v2 | |
with: | |
context: ./docker | |
file: "./docker/Dockerfile-Fedora34" | |
build-args: | | |
"RELEASE_VERSION=${{ steps.tag.outputs.TAG }}" | |
platforms: linux/amd64,linux/arm64 | |
allow: network.host | |
github-token: ${{ github.token }} | |
tags: baxtree/subaligner:${{ steps.tag.outputs.TAG }}.fed34 | |
push: true | |
- name: Build and push the ArchLinux image | |
id: docker_build_arch | |
uses: docker/build-push-action@v2 | |
with: | |
context: ./docker | |
file: "./docker/Dockerfile-ArchLinux" | |
build-args: | | |
"RELEASE_VERSION=${{ steps.tag.outputs.TAG }}" | |
platforms: linux/amd64 | |
allow: network.host | |
github-token: ${{ github.token }} | |
tags: baxtree/subaligner:${{ steps.tag.outputs.TAG }}.arch | |
push: true |