Skip to content

Commit c564c29

Browse files
committed
Fix macos build artifatcs attach
1 parent fef7f53 commit c564c29

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,12 @@ jobs:
338338
if: success() && matrix.ccov == 'ON'
339339
run: make coverage-capture
340340

341+
- name: Prepare Build Artifacts
342+
working-directory: modules
343+
run: |
344+
echo "-- Creating ZIP with Zephir Parser extension"
345+
zip -rv zephir-parser-php-${{ matrix.php }}-${{ matrix.build_type }}-${{ matrix.name }}-${{ matrix.compiler }}-${{ matrix.arch }}.zip ./*.so
346+
341347
- name: Upload code coverage report
342348
if: matrix.ccov == 'ON'
343349
uses: codecov/codecov-action@v1
@@ -352,7 +358,7 @@ jobs:
352358
with:
353359
name: zephir-parser-php-${{ matrix.php }}-${{ matrix.build_type }}-${{ matrix.name }}-${{ matrix.compiler }}-${{ matrix.arch }}.zip
354360
path: |
355-
${{ github.workspace }}/modules/*.so
361+
${{ github.workspace }}/modules/*.zip
356362
357363
release:
358364
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')

0 commit comments

Comments
 (0)