Skip to content

Commit

Permalink
CI: Rename Windows installer artifacts to dmd-<branch>.exe
Browse files Browse the repository at this point in the history
Don't use the DMD VERSION file, currently leading to names like
`dmd-v2.110.0-beta.1.exe`, which accumulate for the nightly release:
https://github.com/dlang/dmd/releases/tag/nightly

Switch to `dmd-master.exe`, similar to the other artifact names.
  • Loading branch information
kinke authored and thewilsonator committed Jul 21, 2024
1 parent 5c1e637 commit 2713e4e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build_release_template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ jobs:
for /f %%v in (dmd.windows\dmd2\src\VERSION) do set ver=%%v
cd windows || exit /b
"c:\Program Files (x86)\NSIS\makensis" /DVersion2=%ver% /DEmbedD2Dir=..\dmd.windows\dmd2 d2-installer.nsi || exit /b
ren dmd-%ver%.exe dmd-${{ inputs.release_branch }}.exe || exit /b
copy dmd-*.exe ..\create_dmd_release\build || exit /b
#################################################################
Expand Down

0 comments on commit 2713e4e

Please sign in to comment.