Merge pull request #167 from parkervcp/games-build

Update games.yml
This commit is contained in:
Michael (Parker) Parker
2023-07-21 13:21:22 -04:00
committed by GitHub

View File

@@ -43,17 +43,17 @@ jobs:
tags: | tags: |
ghcr.io/parkervcp/games:${{ matrix.game }} ghcr.io/parkervcp/games:${{ matrix.game }}
pushAll: pushAll:
name: "games_All:${{ matrix.tag }}" name: "games_All:${{ matrix.game }}"
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
tag: game:
- minetest - minetest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Set up QEMU - name: Set up QEMU
uses: docker/setup-qemu-action@2 uses: docker/setup-qemu-action@v2
with: with:
platforms: arm64,amd64 platforms: arm64,amd64
- uses: docker/setup-buildx-action@v2 - uses: docker/setup-buildx-action@v2
@@ -66,9 +66,9 @@ jobs:
password: ${{ secrets.REGISTRY_TOKEN }} password: ${{ secrets.REGISTRY_TOKEN }}
- uses: docker/build-push-action@v4 - uses: docker/build-push-action@v4
with: with:
context: ./games/${{ matrix.tag }} context: ./games/${{ matrix.game }}
file: ./games/${{ matrix.tag }}/Dockerfile file: ./games/${{ matrix.game }}/Dockerfile
platforms: linux/amd64,linux/arm64 platforms: linux/amd64,linux/arm64
push: true push: true
tags: | tags: |
ghcr.io/parkervcp/games:${{ matrix.game }} ghcr.io/parkervcp/games:${{ matrix.game }}