File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Release mount program
2+
3+ on :
4+ push :
5+ tags :
6+ - ' v*.*.*'
7+
8+ permissions :
9+ contents : write
10+ actions : write
11+ attestations : write
12+ packages : read
13+
14+
15+ jobs :
16+ upload-script :
17+ runs-on : ubuntu-latest
18+ steps :
19+ - uses : actions/checkout@v4
20+ - name : Package mount program
21+ run : |
22+ mkdir -p dist
23+ cp scripts/parallax-mount-program.sh \
24+ dist/parallax-mount-program-${{ github.ref_name }}.sh
25+
26+ - name : Upload mount program
27+ uses : ncipollo/release-action@v1
28+ with :
29+ token : ${{ secrets.GITHUB_TOKEN }}
30+ tag : ${{ github.ref_name }}
31+ name : Release ${{ github.ref_name }} mount program
32+ artifacts : dist/parallax-mount-program-${{ github.ref_name }}.sh
33+ allowUpdates : true
34+ replacesArtifacts : false
35+ draft : false
36+ prerelease : false
37+
You can’t perform that action at this time.
0 commit comments