File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414
1515jobs :
1616 build :
17-
18- runs-on : ubuntu-latest
19-
17+ strategy :
18+ matrix :
19+ os : [ ubuntu-latest, macos-13, macos-14, windows-latest ]
20+ runs-on : ${{ matrix.os }}
21+
2022 steps :
21- - uses : actions/checkout@v4
22- - name : Build
23- run : cargo build --verbose
23+ - name : Checkout
24+ uses : actions/checkout@v4
2425
25- release :
26- needs : build
27- runs-on : ubuntu-latest
28- env :
29- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # provided automatically by GitHub
30- steps :
31- - uses : actions/checkout@v4
32- - uses : actions/download-artifact@v4
33- with : { name: dist }
34- - id : create_release
35- uses : elgohr/Github-Release-Action@v5
36- with :
37- title : Dev Build ${{ github.sha }}
38- tag : dev-${{ github.sha }}
39- prerelease : true
26+ -name : Build
27+ run : cargo build --verbose
You can’t perform that action at this time.
0 commit comments