CI: remove matrix build
This commit is contained in:
parent
4eb11b49b0
commit
50591d6a1d
|
@ -14,10 +14,6 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
arch: [amd64, arm64]
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
|
@ -33,8 +29,8 @@ jobs:
|
||||||
- name: Build Image
|
- name: Build Image
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
with:
|
with:
|
||||||
platforms: linux/${{ matrix.arch }}
|
platforms: linux/amd64,linux/arm64
|
||||||
push: ${{ (github.ref == 'refs/heads/master') && (github.repository == 'citra-emu/citra-multiplayer-dedicated') }}
|
push: ${{ (github.ref == 'refs/heads/master') && (github.repository == 'citra-emu/citra-multiplayer-dedicated') }}
|
||||||
tags: citraemu/citra-multiplayer-dedicated:latest
|
tags: citraemu/citra-multiplayer-dedicated:latest
|
||||||
cache-from: type=gha,scope=buildkit-${{ matrix.arch }}
|
cache-from: type=gha
|
||||||
cache-to: type=gha,mode=max,scope=buildkit-${{ matrix.arch }}
|
cache-to: type=gha,mode=max
|
||||||
|
|
Reference in New Issue