Skip to content

Commit 27d8348

Browse files
build multiple versions
1 parent 5562e07 commit 27d8348

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ permissions:
1616

1717
jobs:
1818
goreleaser:
19-
runs-on: ubuntu-latest
19+
strategy:
20+
matrix:
21+
os: [ubunut-latest, ubuntu-20.04]
22+
runs-on: ${{ matrix.os }}
2023
steps:
2124
- name: Checkout
2225
uses: actions/checkout@v3
@@ -38,7 +41,7 @@ jobs:
3841
- name: Archive Builds
3942
uses: actions/upload-artifact@v3
4043
with:
41-
name: dist
44+
name: dist_${{ matrix.os }}
4245
path: ./dist
4346

4447

0 commit comments

Comments
 (0)