File tree Expand file tree Collapse file tree 1 file changed +6
-17
lines changed Expand file tree Collapse file tree 1 file changed +6
-17
lines changed Original file line number Diff line number Diff line change 15
15
16
16
jobs :
17
17
release :
18
- strategy :
19
- fail-fast : false
20
- matrix :
21
- artifact-file : [linux-x64.deb, macOS-x64.dmg, windows-x64.msi]
22
-
23
18
name : Release
24
19
runs-on : ubuntu-22.04
25
20
26
21
steps :
22
+ - uses : actions/checkout@v2
27
23
- uses : dsaltares/fetch-gh-release-asset@master
28
24
with :
29
- version : ' tags/$TAG '
30
- file : ' HelixNavigator-$VERSION-$ {{ matrix.artifact-file }}'
25
+ version : ' tags/${{ inputs.tag }} '
26
+ file : ' HelixNavigator-${{ inputs.version }}.* '
31
27
target : ' pkgs/'
32
28
token : ' ${{ secrets.GITHUB_TOKEN }}'
33
- env :
34
- VERSION : ${{ inputs.version }}
35
- TAG : ${{ inputs.tag }}
36
29
37
- - uses : actions/create- release@latest
30
+ - uses : ncipollo/ release-action@v1
38
31
with :
39
- tag_name : $TAG
40
- release_name : v$VERSION
32
+ name : v${{ inputs.version }}
33
+ artifacts : " pkgs/HelixNavigator-${{ inputs.version }}.* "
41
34
draft : true
42
35
prerelease : true
43
- env :
44
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
45
- VERSION : ${{ inputs.version }}
46
- TAG : ${{ inputs.tag }}
You can’t perform that action at this time.
0 commit comments