Skip to content

Commit

Permalink
Include pedalboards in win64 installer; bump version
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Feb 9, 2024
1 parent e59ff25 commit 0bf62fd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ jobs:
path: |
*.pkg
- uses: softprops/action-gh-release@v1
if: ${{ matrix.os == env.RELEASE_OS_MAC && startsWith(github.ref, 'refs/tags/') }}
if: ${{ matrix.os == env.RELEASE_OS_MAC && matrix.target == 'macos-universal-10.15' && startsWith(github.ref, 'refs/tags/') }}
with:
tag_name: ${{ github.ref_name }}
name: ${{ github.ref_name }}
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.8
0.0.9
2 changes: 2 additions & 0 deletions utils/win64/win64-installer.iss
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,8 @@ Source: "..\..\build\mod-desktop-asio.dll"; DestDir: "{win}\System32"; Flags: ig
; misc
Source: "..\..\build\mod-hardware-descriptor.json"; DestDir: "{app}"; Flags: ignoreversion;
Source: "..\..\build\VERSION"; DestDir: "{app}"; Flags: ignoreversion;
; pedalboards
#include "win64-pedalboards.iss"
; plugins
#include "win64-plugins.iss"

Expand Down
2 changes: 1 addition & 1 deletion utils/win64/win64-installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ for f in $(find -L build/plugins/ -type f); do
done
for f in $(find -L pedalboards/ -type f); do
d=$(dirname $(echo ${f} | sed "s|pedalboards/||"))
echo "Source: \"..\\$(echo ${f} | tr '/' '\\')\"; DestDir: \"{app}\\pedalboards\\$(echo ${d} | tr '/' '\\')\"; Components: pedalboards; Flags: ignoreversion;" >> utils/win64/win64-pedalboards.iss
echo "Source: \"..\\..\\$(echo ${f} | tr '/' '\\')\"; DestDir: \"{app}\\pedalboards\\$(echo ${d} | tr '/' '\\')\"; Components: pedalboards; Flags: ignoreversion;" >> utils/win64/win64-pedalboards.iss
done

# generate version
Expand Down

0 comments on commit 0bf62fd

Please sign in to comment.