From f6f4ef92237e7b6792e6934f54a1274a660d0aac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sandstr=C3=B6m?= Date: Sun, 1 Sep 2024 15:05:41 +0200 Subject: [PATCH] cleanup github action --- .github/workflows/compile_plugin.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/compile_plugin.yaml b/.github/workflows/compile_plugin.yaml index 5b467f8..fb36524 100644 --- a/.github/workflows/compile_plugin.yaml +++ b/.github/workflows/compile_plugin.yaml @@ -30,21 +30,21 @@ jobs: - name: compile intel mac and zip run: | cargo xtask bundle havregryn --target=x86_64-apple-darwin --release - cd ${DIR} + cd $DIR zip -r Havregryn_macOS_intel.vst3.zip Havregryn.vst3 cd - - name: compile arm mac and zip run: | cargo xtask bundle havregryn --target=aarch64-apple-darwin --release - cd ${DIR} + cd $DIR zip -r Havregryn_macOS_arm.vst3.zip Havregryn.vst3 cd - - name: compile windows and zip run: | cargo xtask bundle havregryn --target=x86_64-pc-windows-gnu --release - cd ${DIR} + cd $DIR zip -r Havregryn_Win.vst3.zip Havregryn.vst3 cd -