Skip to content

Commit 9d1115a

Browse files
authored
Merge pull request #6 from ps4emulation/SysRay-patch-1
Add inputs for branch and is_push_event in workflow
2 parents 13e1949 + 5e6d96e commit 9d1115a

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
- name: Configure project
8888
run: |
8989
echo "::add-matcher::.github/matchers/cmake.json"
90-
cmake -S. -Bbuild -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=clang-19 -DCMAKE_CXX_COMPILER=clang++-19 -DOO_PS4_LINKER_SUFFIX=-19 -DOO_PS4_NOPKG=${{ github.event_name == 'push' && 'OFF' || 'ON' }}
90+
cmake -S. -Bbuild -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=clang-19 -DCMAKE_CXX_COMPILER=clang++-19 -DOO_PS4_LINKER_SUFFIX=-19 -DOO_PS4_NOPKG=${{ 'OFF' }}
9191
9292
- name: Build project
9393
env:
@@ -104,7 +104,16 @@ jobs:
104104
name: ps4-integration-tests
105105
path: |
106106
./build/install/*
107-
107+
108+
- name: Upload project artifacts (no pkg)
109+
uses: actions/upload-artifact@v4
110+
if: ${{ github.event_name != 'push' }}
111+
with:
112+
name: ps4-integration-tests-no-pkg
113+
path: |
114+
./build/install/*
115+
!./build/install/**/*.pkg
116+
108117
- name: Create release archive
109118
if: ${{ github.event_name == 'push' }}
110119
working-directory: ./build/install/

0 commit comments

Comments
 (0)