Skip to content

Commit

Permalink
Fix artefacts upload
Browse files Browse the repository at this point in the history
  • Loading branch information
asb2m10 committed Apr 7, 2024
1 parent af8bc13 commit 8b04397
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/project-pipeline.yml
Expand Up @@ -6,10 +6,6 @@ on:
pull_request:
branches: [ master ]

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Debug

jobs:
build-linux:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -90,10 +86,10 @@ jobs:
with:
name: macos-bin
path: |
${{github.workspace}}/build/*_artefacts/${{env.BUILD_TYPE}}/VST3/*.vst3/**
${{github.workspace}}/build/*_artefacts/${{env.BUILD_TYPE}}/CLAP/*.clap/**
${{github.workspace}}/build/*_artefacts/${{env.BUILD_TYPE}}/AU/*.component/**
${{github.workspace}}/build/*_artefacts/${{env.BUILD_TYPE}}/Standalone/*.app/**
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/VST3/*.vst3/**
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/CLAP/*.clap/**
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/AU/*.component/**
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/Standalone/*.app/**
build-windows:
runs-on: windows-latest
Expand Down Expand Up @@ -122,8 +118,8 @@ jobs:
cmake --build ${{github.workspace}}/build --config ${{ env.BUILD_TYPE }}
- name: Show
shell: bash
run: ls -lR ${{github.workspace}}/build
shell: cmd
run: dir /s ${{github.workspace}}\build

- name: Upload
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 8b04397

Please sign in to comment.