Skip to content

Commit

Permalink
Final actions
Browse files Browse the repository at this point in the history
  • Loading branch information
baconpaul committed Apr 23, 2024
1 parent dd3a464 commit bb7a1a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-daw-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ jobs:
- name: Build project
run: |
cmake -S . -B ./build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64" -DBUILD_JUCE_PLUGIN=TRUE
cmake --build ./build --config Debug --target awcons-installer
cmake -S . -B ./build -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64" -DBUILD_JUCE_PLUGIN=TRUE
cmake --build ./build --config Release --target awcons-installer
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: build/installer
name: dawplugin-${{ matrix.platform }}
6 changes: 1 addition & 5 deletions cmake/basic-installer.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,7 @@ else ()
endif ()

string(TIMESTAMP AWCONS_DATE "%Y-%m-%d")
if (WIN32)
set(AWCONS_ZIP AirwindowsConsolidated-${AWCONS_DATE}-${VERSION_CHUNK}-${CMAKE_SYSTEM_NAME}-${BITS}bit.zip)
else ()
set(AWCONS_ZIP AirwindowsConsolidated-${AWCONS_DATE}-${VERSION_CHUNK}-${CMAKE_SYSTEM_NAME}.zip)
endif ()
set(AWCONS_ZIP AirwindowsConsolidated-${AWCONS_DATE}-${VERSION_CHUNK}-${CMAKE_SYSTEM_NAME}.zip)


if (APPLE)
Expand Down

0 comments on commit bb7a1a4

Please sign in to comment.