From babd606e282101db6d940488649dd519009e2c50 Mon Sep 17 00:00:00 2001 From: Quinten Date: Wed, 5 Oct 2022 20:18:13 +0200 Subject: [PATCH] add mumble to be build on arm --- .github/workflows/voice.yml | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/.github/workflows/voice.yml b/.github/workflows/voice.yml index 331a198..7795be8 100644 --- a/.github/workflows/voice.yml +++ b/.github/workflows/voice.yml @@ -9,7 +9,7 @@ on: paths: - voice/** jobs: - push: + pushTeaspeak: name: "yolks:voice_${{ matrix.tag }}" runs-on: ubuntu-latest strategy: @@ -17,7 +17,6 @@ jobs: matrix: tag: - teaspeak - - mumble steps: - uses: actions/checkout@v3 - uses: docker/setup-buildx-action@v2 @@ -37,3 +36,31 @@ jobs: push: true tags: | ghcr.io/parkervcp/yolks:voice_${{ matrix.tag }} + + pushmumble: + name: "yolks:voice_${{ matrix.tag }}" + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + tag: + - mumble + steps: + - uses: actions/checkout@v3 + - uses: docker/setup-buildx-action@v2 + with: + version: "v0.8.2" + buildkitd-flags: --debug + - uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.REGISTRY_TOKEN }} + - uses: docker/build-push-action@v3 + with: + context: ./voice/${{ matrix.tag }} + file: ./voice/${{ matrix.tag }}/Dockerfile + platforms: linux/amd64,linux/arm64 + push: true + tags: | + ghcr.io/parkervcp/yolks:voice_${{ matrix.tag }} \ No newline at end of file