File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -29,11 +29,13 @@ jobs:
29
29
cd src && python build.py bdist_msi
30
30
shell : pwsh
31
31
32
- - name : Create App Version
32
+ - name : Get App Info
33
33
id : get_version
34
34
run : |
35
35
$version = (Get-Content src/build.py | Select-String -Pattern 'version\s*=\s*"([^"]+)"').Matches.Groups[1].Value
36
36
echo "VERSION=$version" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
37
+ $filename = (Get-ChildItem -Path src/dist/out/*.msi).Name
38
+ echo "FILENAME=$filename" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
37
39
shell : pwsh
38
40
39
41
- name : Create Tag
88
90
tag_name : ${{ env.VERSION }}
89
91
name : Release ${{ env.VERSION }}
90
92
body : |
91
- 
93
+ 
92
94
${{ steps.changelog.outputs.changes }}
93
95
append_body : true
94
96
files : |
You can’t perform that action at this time.
0 commit comments