Docker #8
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 | |
on: | |
workflow_dispatch: | |
inputs: | |
tagInput: | |
description: 'Tag' | |
required: true | |
workflow_run: | |
workflows: [Release Package to PyPI.org] | |
types: | |
- completed | |
jobs: | |
build-and-push-image: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
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 GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GH_TOKEN }} | |
- name: Determine version tag | |
id: version-tag | |
run: | | |
if [ -n "${{ github.event.inputs.tagInput }}" ]; then | |
echo "tag=${{ github.event.inputs.tagInput }}" >> "$GITHUB_OUTPUT" | |
else | |
echo "tag=${{ github.event.workflow_run.conclusion.outputs.version }}" >> "$GITHUB_OUTPUT" | |
fi | |
- name: Build and push | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: | | |
ghcr.io/ieasybooks/tafrigh:latest | |
ghcr.io/ieasybooks/tafrigh:${{ steps.version-tag.outputs.tag }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Build and push Wit image | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
build-args: | | |
DEPS=wit | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: | | |
ghcr.io/ieasybooks/tafrigh-wit:latest | |
ghcr.io/ieasybooks/tafrigh-wit:${{ steps.version-tag.outputs.tag }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Build and push Whisper image | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
build-args: | | |
DEPS=whisper | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: | | |
ghcr.io/ieasybooks/tafrigh-whisper:latest | |
ghcr.io/ieasybooks/tafrigh-whisper:${{ steps.version-tag.outputs.tag }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |