Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ jobs:
make
make test REPORT_EXIT_STATUS=1 NO_INTERACTION=1 TESTS="--show-all"
- name: Save artifact (NTS)
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: matrix.php-zts == 'nts'
with:
name: timecop_${{ env.PHP_API }}.so
path: modules/timecop.so
if-no-files-found: error
- name: Save artifact (TS)
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: matrix.php-zts == 'ts'
with:
name: timecop_${{ env.PHP_API }}_zts.so
Expand All @@ -87,7 +87,7 @@ jobs:
cd output
sha256sum *.so > SHA256SUM
- name: Save artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: timecop
path: output/*
Expand Down