From d17b169e5c41d1c4ddee466743461816f7e8689d Mon Sep 17 00:00:00 2001 From: Mike Oliphant Date: Wed, 27 Nov 2024 12:37:35 -0800 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c61b339..a42456f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,7 +46,8 @@ jobs: cmake --build . --config $BUILD_TYPE -j4 - name: Add LV2 Archive - run: tar -czf neural_amp_modeler_lv2_linux_x64.tgz ${{github.workspace}}/build/neural_amp_modeler.lv2 + working-directory: ${{github.workspace}}/build + run: tar -czf neural_amp_modeler_lv2_linux_x64.tgz neural_amp_modeler.lv2 - name: Upload Plugin Asset uses: actions/upload-release-asset@v1 @@ -55,7 +56,7 @@ jobs: with: upload_url: ${{ needs.create_release.outputs.upload_url }} asset_path: ./neural_amp_modeler_lv2_linux_x64.tgz - asset_name: neural_amp_modeler_lv2_linux_x64 + asset_name: neural_amp_modeler_lv2_linux_x64.tgz asset_content_type: application/tgz build-windows: