Skip to content

Commit

Permalink
better artifact names
Browse files Browse the repository at this point in the history
  • Loading branch information
capnspacehook committed Mar 22, 2023
1 parent c6c53a1 commit 281743b
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,21 +114,23 @@ jobs:
if: runner.os == 'Windows'
uses: actions/upload-artifact@v3
with:
name: ${{ env.PRODUCT_NAME }}_{{ runner.os }}
name: ${{ env.PRODUCT_NAME }}
path: "${{ env.VST3_PATH }}/**/*.vst3"

- name: Upload zipped VST3, AU and AUv3 (MacOS)
- name: Upload VST3, AU and AUv3 (MacOS)
if: runner.os == 'macOS'
uses: actions/upload-artifact@v3
with:
name: ${{ env.PRODUCT_NAME }}_{{ runner.os }}
path: ${{ env.ARTIFACTS_PATH }}/
name: ${{ env.PRODUCT_NAME }}
path: |
${{ env.ARTIFACTS_PATH }}/AU/
${{ env.ARTIFACTS_PATH }}/VST3/
- name: Upload SO (Linux)
if: runner.os == 'Linux'
uses: actions/upload-artifact@v3
with:
name: ${{ env.PRODUCT_NAME }}_{{ runner.os }}
name: ${{ env.PRODUCT_NAME }}
path: "${{ env.VST3_PATH }}/**/*.so"

release:
Expand Down

0 comments on commit 281743b

Please sign in to comment.