feat: use prebuilt image #59
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 Action Docker | |
on: | |
push: | |
tags: | |
- 'v**' | |
- '!*-prebuilt' # don't want to build docker image for 'prebuilt' suffix tag | |
jobs: | |
build: | |
name: Release Action Docker | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set DOCKER_REPO_NAME env | |
run: echo DOCKER_REPO_NAME=$(basename ${GITHUB_REPOSITORY}) >> ${GITHUB_ENV} | |
- name: Set IMAGE_TAG env | |
run: echo IMAGE_TAG=$(basename ${GITHUB_REF}) >> ${GITHUB_ENV} | |
- name: Append latest for each release | |
run: echo IMAGE_TAG=${IMAGE_TAG},latest >> ${GITHUB_ENV} | |
- name: Environment Printer | |
uses: managedkaos/[email protected] | |
# Add support for more platforms with QEMU (optional) | |
# https://github.com/docker/setup-qemu-action | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build & Publish to Github Container Registry | |
uses: elgohr/Publish-Docker-Github-Action@v4 | |
with: | |
name: ${{ github.actor }}/${{ env.DOCKER_REPO_NAME }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
platforms: linux/amd64,linux/arm64 | |
registry: ghcr.io | |
snapshot: false | |
tags: "${{ env.IMAGE_TAG }}" | |
- name: Build & Publish to DockerHub | |
uses: elgohr/Publish-Docker-Github-Action@v4 | |
with: | |
name: ${{ github.repository }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
platforms: linux/amd64,linux/arm64 | |
snapshot: false | |
tags: "${{ env.IMAGE_TAG }}" | |