summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2022-02-02 19:34:43 -0800
committerGitHub <noreply@github.com>2022-02-02 22:34:43 -0500
commit5df7839d181f88c2c4d92331d0608a6e8bb51761 (patch)
tree333a8beb77852ac419d8535fa2a6a066d497317d /.github
parent8587af6936cf241e5272ef25470e794854b5125c (diff)
ci: disable 32-bit in choco generation (#671)
Seems like the 32-bit binary triggers false positives on VirusTotal. Going to disable this for now.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/deployment.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml
index 5e74db53..4a4f39a6 100644
--- a/.github/workflows/deployment.yml
+++ b/.github/workflows/deployment.yml
@@ -389,7 +389,7 @@ jobs:
- name: Execute choco packaging script
run: |
- python "./deployment/windows/choco/choco_packager.py" "./release/bottom_i686-pc-windows-msvc.zip" "./release/bottom_x86_64-pc-windows-msvc.zip" ${{ env.RELEASE_VERSION }} "./deployment/windows/choco/bottom.nuspec.template" "./deployment/windows/choco/chocolateyinstall.ps1.template" "bottom.nuspec" "tools/chocolateyinstall.ps1" "tools/"
+ python "./deployment/windows/choco/choco_packager.py" "./release/bottom_x86_64-pc-windows-msvc.zip" ${{ env.RELEASE_VERSION }} "./deployment/windows/choco/bottom.nuspec.template" "./deployment/windows/choco/chocolateyinstall.ps1.template" "bottom.nuspec" "tools/chocolateyinstall.ps1" "tools/"
zip -r choco.zip "bottom.nuspec" "tools"
- name: Move release file into release directory