Add MSI image release step to GitHub Actions and update build script for dependencies

This commit is contained in:
Simon Larsen
2024-12-20 12:10:58 +00:00
parent ec7d5fe5c2
commit b264f4a6b9
2 changed files with 6 additions and 3 deletions

View File

@@ -1746,6 +1746,9 @@ jobs:
- name: Run GoReleaser
run: cd InfrastructureAgent && export GORELEASER_CURRENT_TAG=7.0.${{needs.generate-build-number.outputs.build_number}} && goreleaser release --clean --snapshot
- name: Release MSI Images
run: cd InfrastructureAgent && bash build-msi.sh 7.0.${{needs.generate-build-number.outputs.build_number}}
# Upload binaries to github release
- name: Release

View File

@@ -1,8 +1,8 @@
#!/bin/bash
# sudo apt update
# sudo apt install -y msitools
# sudo apt-get install wixl
sudo apt update
sudo apt install -y msitools
sudo apt-get install wixl
# Exit script on any error