We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5562e07 commit 27d8348Copy full SHA for 27d8348
.github/workflows/build.yml
@@ -16,7 +16,10 @@ permissions:
16
17
jobs:
18
goreleaser:
19
- runs-on: ubuntu-latest
+ strategy:
20
+ matrix:
21
+ os: [ubunut-latest, ubuntu-20.04]
22
+ runs-on: ${{ matrix.os }}
23
steps:
24
- name: Checkout
25
uses: actions/checkout@v3
@@ -38,7 +41,7 @@ jobs:
38
41
- name: Archive Builds
39
42
uses: actions/upload-artifact@v3
40
43
with:
- name: dist
44
+ name: dist_${{ matrix.os }}
45
path: ./dist
46
47
0 commit comments