Skip to content

Initial commit

Initial commit #6

Workflow file for this run

name: Build Standalone
on:
push:
branches:
- main
tags: [ 'v*.*.*' ]
jobs:
push_to_registries:
name: Build Standalone
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
strategy:
matrix:
addon: ["standalone_whisper"]
arch: ["aarch64", "amd64"]
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.ACTION_TOKEN }}
- uses: mr-smithers-excellent/docker-build-push@v6
# if: github.event_name == 'push' && contains(github.ref, '/tags/v')
name: "Build & push Standalone Docker image: ${{ matrix.arch }}"
with:
image: "${{ matrix.arch }}-${{ matrix.addon }}"
dockerfile: "standalone_whisper/Dockerfile"
tags: latest
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.ACTION_TOKEN }}
pushImage: true