diff options
| author | theofficialgman <28281419+theofficialgman@users.noreply.github.com> | 2022-07-05 16:14:13 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-05 22:14:13 +0200 |
| commit | 39f70c0956c800e85c1313bc3f1cb0f79a250782 (patch) | |
| tree | 954d1788ba0122ac1d28de2a9f70dc675b6eba57 | |
| parent | 0674636243afb94553b60cf36a32188e5bf83971 (diff) | |
| download | box64-39f70c0956c800e85c1313bc3f1cb0f79a250782.tar.gz box64-39f70c0956c800e85c1313bc3f1cb0f79a250782.zip | |
change order of matrix (to preview better under checkmark dropdown (#346)
| -rw-r--r-- | .github/workflows/release.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 79e0a556..7c899106 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,16 +27,16 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest] platform: [X64, OTHER_ARM, RISCV, RPI4ARM64, RK3326, RK3399, RK3288, PHYTIUM, SD845] type: [Release, Trace] + os: [ubuntu-latest] include: - - os: ubuntu-18.04 - platform: TEGRAX1 + - platform: TEGRAX1 type: Release - - os: ubuntu-18.04 - platform: TEGRAX1 + os: ubuntu-18.04 + - platform: TEGRAX1 type: Trace + os: ubuntu-18.04 runs-on: ${{ matrix.os }} steps: |