File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -39,14 +39,21 @@ jobs:
3939 copy dist\BetterKnobVolumeMixer.exe release\
4040 copy dist\hotkeyfinder.exe release\
4141 copy src\config.ini release\
42+
43+ - name : Get version from tag
44+ id : get_version
45+ shell : powershell
46+ run : |
47+ $tag = "${{ github.ref_name }}"
48+ echo "VERSION=$tag" >> $env:GITHUB_OUTPUT
4249
4350 - name : Create ZIP
44- run : Compress-Archive -Path release\* -DestinationPath dist/betterknob_windows_x86_64 .zip
51+ run : Compress-Archive -Path release\* -DestinationPath dist/betterknob_windows_x86_64_${{ steps.get_version.outputs.VERSION }} .zip
4552
4653 - uses : actions/upload-artifact@v4
4754 with :
48- name : betterknob_windows_x86_64
49- path : dist/betterknob_windows_x86_64 .zip
55+ name : betterknob_windows_x86_64_${{ steps.get_version.outputs.VERSION }}
56+ path : dist/betterknob_windows_x86_64_${{ steps.get_version.outputs.VERSION }} .zip
5057
5158 publish :
5259 needs : [windows]
6269 draft : true
6370 prerelease : false
6471 files : |
65- betterknob_windows_x86_64 /*
72+ betterknob_windows_x86_64_* /*
Original file line number Diff line number Diff line change 11[project ]
22name = " BetterKnob"
33description = " A better volume knob for controlling your computer's audio"
4- version = " 1.2.0 "
4+ version = " 1.2.1 "
55license = " GPL-3.0-only"
66readme = " README.md"
77
You can’t perform that action at this time.
0 commit comments