Release Docker Image #9
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 Docker Image | |
# Run when python test runs successfully on master branch | |
on: | |
workflow_run: | |
workflows: ["Python Test"] | |
branches: ["main"] | |
types: | |
- completed | |
jobs: | |
docker-build: | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Get Package Version | |
run: echo "VERSION=`cat pyproject.toml | grep '^version =' | awk '{gsub(/"/, "", $3); print $3; exit}'`" >> $GITHUB_ENV | |
- name: Build and push | |
id: docker_build | |
uses: docker/build-push-action@v4 | |
with: | |
push: true | |
# XXX - linux/arm64 has issues installing ruamel.yaml.clib 0.2.8 | |
platforms: linux/amd64 | |
tags: nikelab222/sagerender:latest,nikelab222/sagerender:${{ env.VERSION }} | |
- name: Image digest | |
run: echo ${{ steps.docker_build.outputs.digest }} |