diff options
| author | Andreas Källberg <anka.213@gmail.com> | 2021-07-22 09:06:31 +0800 |
|---|---|---|
| committer | Andreas Källberg <anka.213@gmail.com> | 2021-07-25 08:23:25 +0800 |
| commit | 375b3cf285078224d013437eed0bc4b0f75ba35b (patch) | |
| tree | ed1ff6e11b13bd6ae981e60ae4f905d3dad637b9 /.github/workflows | |
| parent | 3c4f42db15b92ea5de24147b3cbfba195837170f (diff) | |
Update release script to build for two ubuntu versions
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build-binary-packages.yml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/.github/workflows/build-binary-packages.yml b/.github/workflows/build-binary-packages.yml index 1893f5569..0931dce0e 100644 --- a/.github/workflows/build-binary-packages.yml +++ b/.github/workflows/build-binary-packages.yml @@ -10,11 +10,13 @@ jobs: ubuntu: name: Build Ubuntu package - runs-on: ubuntu-latest - # strategy: - # matrix: - # ghc: ["8.6.5"] - # cabal: ["2.4"] + strategy: + matrix: + os: + - ubuntu-18.04 + - ubuntu-20.04 + + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 @@ -53,7 +55,7 @@ jobs: - name: Upload artifact uses: actions/upload-artifact@v2 with: - name: gf-${{ github.sha }}-ubuntu + name: gf-${{ github.sha }}-${{ matrix.os }} path: dist/gf_*.deb if-no-files-found: error |
