Skip to content

Commit

Permalink
Add MSI image release step to GitHub Actions and update build script …
Browse files Browse the repository at this point in the history
…for dependencies
  • Loading branch information
simlarsen committed Dec 20, 2024
1 parent ec7d5fe commit b264f4a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions InfrastructureAgent/build-msi.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit b264f4a

Please sign in to comment.