diff options
author | MTRNord <mtrnord1@gmail.com> | 2021-04-20 22:18:45 +0200 |
---|---|---|
committer | MTRNord <mtrnord1@gmail.com> | 2021-04-20 22:18:45 +0200 |
commit | 5cdb296da21414df02f22bab6e76852d6ab210ad (patch) | |
tree | 535837b21dc9ce86ffca6db09146a299ae2719ac /appveyor.yml | |
parent | refactor: Remove windows installer feature that was always broken (diff) | |
download | nheko-5cdb296da21414df02f22bab6e76852d6ab210ad.tar.xz |
ci: Upload windows installer also in PR builds
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index b9ec11fa..55d518be 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -101,7 +101,8 @@ after_build: - set PATH=%BUILD%\tools\bin;%PATH% - binarycreator.exe -f -c installer\config\config.xml -p installer\packages nheko-installer.exe - - mv nheko-installer.exe nheko-%APPVEYOR_REPO_TAG_NAME%-installer.exe + - copy nheko-installer.exe nheko-%APPVEYOR_REPO_TAG_NAME%-installer.exe + - copy nheko-installer.exe nheko-%APPVEYOR_PULL_REQUEST_HEAD_COMMIT%-installer.exe - ps: .\.ci\upload-nightly.ps1 on_success: @@ -121,3 +122,4 @@ deploy: artifacts: - path: nheko_win_64.zip - path: nheko-$(APPVEYOR_REPO_TAG_NAME)-installer.exe + - path: nheko-$(APPVEYOR_PULL_REQUEST_HEAD_COMMIT)-installer.exe |