Feat: update CLAP / VST CI
All checks were successful
Deploy Website / deploy (push) Has been skipped
All checks were successful
Deploy Website / deploy (push) Has been skipped
This commit is contained in:
10
.github/workflows/assemble-macos.yml
vendored
10
.github/workflows/assemble-macos.yml
vendored
@@ -104,17 +104,23 @@ jobs:
|
|||||||
name: cagire-macos-universal-desktop
|
name: cagire-macos-universal-desktop
|
||||||
path: Cagire.app.zip
|
path: Cagire.app.zip
|
||||||
|
|
||||||
|
- name: Prepare universal plugin staging
|
||||||
|
run: |
|
||||||
|
mkdir -p staging/clap staging/vst3
|
||||||
|
cp -R cagire-plugins.clap staging/clap/
|
||||||
|
cp -R cagire-plugins.vst3 staging/vst3/
|
||||||
|
|
||||||
- name: Upload universal CLAP plugin
|
- name: Upload universal CLAP plugin
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: cagire-macos-universal-clap
|
name: cagire-macos-universal-clap
|
||||||
path: cagire-plugins.clap
|
path: staging/clap/
|
||||||
|
|
||||||
- name: Upload universal VST3 plugin
|
- name: Upload universal VST3 plugin
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: cagire-macos-universal-vst3
|
name: cagire-macos-universal-vst3
|
||||||
path: cagire-plugins.vst3
|
path: staging/vst3/
|
||||||
|
|
||||||
- name: Upload DMG
|
- name: Upload DMG
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|||||||
11
.github/workflows/build-linux.yml
vendored
11
.github/workflows/build-linux.yml
vendored
@@ -109,16 +109,23 @@ jobs:
|
|||||||
name: cagire-linux-x86_64-appimage
|
name: cagire-linux-x86_64-appimage
|
||||||
path: target/releases/*.AppImage
|
path: target/releases/*.AppImage
|
||||||
|
|
||||||
|
- name: Prepare plugin artifacts
|
||||||
|
if: inputs.build-packages
|
||||||
|
run: |
|
||||||
|
mkdir -p staging/clap staging/vst3
|
||||||
|
cp -R target/bundled/cagire-plugins.clap staging/clap/
|
||||||
|
cp -R target/bundled/cagire-plugins.vst3 staging/vst3/
|
||||||
|
|
||||||
- name: Upload CLAP artifact
|
- name: Upload CLAP artifact
|
||||||
if: inputs.build-packages
|
if: inputs.build-packages
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: cagire-linux-x86_64-clap
|
name: cagire-linux-x86_64-clap
|
||||||
path: target/bundled/cagire-plugins.clap
|
path: staging/clap/
|
||||||
|
|
||||||
- name: Upload VST3 artifact
|
- name: Upload VST3 artifact
|
||||||
if: inputs.build-packages
|
if: inputs.build-packages
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: cagire-linux-x86_64-vst3
|
name: cagire-linux-x86_64-vst3
|
||||||
path: target/bundled/cagire-plugins.vst3
|
path: staging/vst3/
|
||||||
|
|||||||
11
.github/workflows/build-macos.yml
vendored
11
.github/workflows/build-macos.yml
vendored
@@ -105,16 +105,23 @@ jobs:
|
|||||||
name: ${{ matrix.artifact }}-desktop
|
name: ${{ matrix.artifact }}-desktop
|
||||||
path: target/${{ matrix.target }}/release/bundle/osx/Cagire.app.zip
|
path: target/${{ matrix.target }}/release/bundle/osx/Cagire.app.zip
|
||||||
|
|
||||||
|
- name: Prepare plugin artifacts
|
||||||
|
if: inputs.build-packages
|
||||||
|
run: |
|
||||||
|
mkdir -p staging/clap staging/vst3
|
||||||
|
cp -R target/bundled/cagire-plugins.clap staging/clap/
|
||||||
|
cp -R target/bundled/cagire-plugins.vst3 staging/vst3/
|
||||||
|
|
||||||
- name: Upload CLAP artifact
|
- name: Upload CLAP artifact
|
||||||
if: inputs.build-packages
|
if: inputs.build-packages
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ matrix.artifact }}-clap
|
name: ${{ matrix.artifact }}-clap
|
||||||
path: target/bundled/cagire-plugins.clap
|
path: staging/clap/
|
||||||
|
|
||||||
- name: Upload VST3 artifact
|
- name: Upload VST3 artifact
|
||||||
if: inputs.build-packages
|
if: inputs.build-packages
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ matrix.artifact }}-vst3
|
name: ${{ matrix.artifact }}-vst3
|
||||||
path: target/bundled/cagire-plugins.vst3
|
path: staging/vst3/
|
||||||
|
|||||||
11
.github/workflows/build-windows.yml
vendored
11
.github/workflows/build-windows.yml
vendored
@@ -100,16 +100,23 @@ jobs:
|
|||||||
name: cagire-windows-x86_64-msi
|
name: cagire-windows-x86_64-msi
|
||||||
path: target/wix/*.msi
|
path: target/wix/*.msi
|
||||||
|
|
||||||
|
- name: Prepare plugin artifacts
|
||||||
|
if: inputs.build-packages
|
||||||
|
run: |
|
||||||
|
mkdir -p staging/clap staging/vst3
|
||||||
|
cp -R target/bundled/cagire-plugins.clap staging/clap/
|
||||||
|
cp -R target/bundled/cagire-plugins.vst3 staging/vst3/
|
||||||
|
|
||||||
- name: Upload CLAP artifact
|
- name: Upload CLAP artifact
|
||||||
if: inputs.build-packages
|
if: inputs.build-packages
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: cagire-windows-x86_64-clap
|
name: cagire-windows-x86_64-clap
|
||||||
path: target/bundled/cagire-plugins.clap
|
path: staging/clap/
|
||||||
|
|
||||||
- name: Upload VST3 artifact
|
- name: Upload VST3 artifact
|
||||||
if: inputs.build-packages
|
if: inputs.build-packages
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: cagire-windows-x86_64-vst3
|
name: cagire-windows-x86_64-vst3
|
||||||
path: target/bundled/cagire-plugins.vst3
|
path: staging/vst3/
|
||||||
|
|||||||
Reference in New Issue
Block a user