Skip to content

Commit

Permalink
Arrived at solution
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwellmattryan committed Nov 9, 2024
1 parent 197b634 commit 96ce156
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,25 +53,25 @@ jobs:
run: cmake --build bin --config ${{ env.BUILD_TYPE }} --target Rotor_All

# Windows
- name: Zip Artifact
- name: Zip Artifact (Windows)
if: runner.os == 'Windows'
run: zip -r rotor.zip bin/Rotor_artefacts/Release/VST3/Rotor.vst3/Contents/x86_64-win/Rotor.vst3
run: zip rotor.zip bin/Rotor_artefacts/Release/VST3/Rotor.vst3/Contents/x86_64-win/Rotor.vst3

- name: Upload
- name: Upload Artifact (Windows)
if: runner.os == 'Windows'
uses: actions/upload-artifact@v4
with:
name: rotor-windows.zip
name: rotor-windows
path: rotor.zip

# MacOS
- name: Zip Artifact
- name: Zip Artifact (MacOS)
if: runner.os == 'macOS'
run: zip -r rotor.zip bin/Rotor_artefacts/VST3/Rotor.vst3 bin/Rotor_artefacts/AU/Rotor.component
run: zip rotor.zip bin/Rotor_artefacts/VST3/Rotor.vst3 bin/Rotor_artefacts/AU/Rotor.component

- name: Upload
- name: Upload Artifact (MacOS)
if: runner.os == 'macOS'
uses: actions/upload-artifact@v4
with:
name: rotor-macos.zip
name: rotor-macos
path: rotor.zip

0 comments on commit 96ce156

Please sign in to comment.