Browse Source

Add CardinalPortable to Windows zip build artifacts

Signed-off-by: falkTX <falktx@falktx.com>
tags/22.12
falkTX 3 years ago
parent
commit
0c00446480
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 8 additions and 2 deletions
  1. +8
    -2
      .github/workflows/build.yml

+ 8
- 2
.github/workflows/build.yml View File

@@ -929,7 +929,10 @@ jobs:
- name: Pack binaries
run: |
pushd bin
zip -r -9 ../${{ github.event.repository.name }}-win32-${{ github.event.pull_request.number || env.SHA8 }}.zip $(ls | grep -e lv2 -e vst -e clap)
mkdir CardinalPortable
mv CardinalNative.exe CardinalPortable/
ln -s ../Cardinal.clap/resources CardinalPortable/
zip -r -9 ../${{ github.event.repository.name }}-win32-${{ github.event.pull_request.number || env.SHA8 }}.zip $(ls | grep -e lv2 -e vst -e clap -e CardinalPortable)
popd
zip -u -9 ${{ github.event.repository.name }}-win32-${{ github.event.pull_request.number || env.SHA8 }}.zip LICENSE README.md docs/*.*
- uses: actions/upload-artifact@v3
@@ -1018,7 +1021,10 @@ jobs:
- name: Pack binaries
run: |
pushd bin
zip -r -9 ../${{ github.event.repository.name }}-win64-${{ github.event.pull_request.number || env.SHA8 }}.zip $(ls | grep -e lv2 -e vst -e clap)
mkdir CardinalPortable
mv CardinalNative.exe CardinalPortable/
ln -s ../Cardinal.clap/resources CardinalPortable/
zip -r -9 ../${{ github.event.repository.name }}-win64-${{ github.event.pull_request.number || env.SHA8 }}.zip $(ls | grep -e lv2 -e vst -e clap -e CardinalPortable)
popd
zip -u -9 ${{ github.event.repository.name }}-win64-${{ github.event.pull_request.number || env.SHA8 }}.zip LICENSE README.md docs/*.*
- uses: actions/upload-artifact@v3


Loading…
Cancel
Save