Skip to content

Commit 915c19c

Browse files
committed
chore(build): hopefully fixed phar release upload
1 parent 9a2c138 commit 915c19c

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/php-package.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,8 @@ jobs:
4949
- name: Build package
5050
run: |
5151
chmod +x ./phar-composer-${{ env.PHAR_TOOL_VERSION }}.phar
52-
./phar-composer-${{ env.PHAR_TOOL_VERSION }}.phar build ./ mysql2json
52+
./phar-composer-${{ env.PHAR_TOOL_VERSION }}.phar build ./ mysql2jsonl
53+
54+
55+
56+

.github/workflows/release-please.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
needs: verify-release
2020
runs-on: ubuntu-24.04
2121
outputs:
22-
releases_created: ${{ steps.release.outputs.release_created }}
22+
release_created: ${{ steps.release.outputs.release_created }}
2323
tag: ${{ steps.release.outputs.tag_name }}
2424
steps:
2525
- uses: googleapis/release-please-action@v4
@@ -29,7 +29,7 @@ jobs:
2929
upload_phar:
3030
needs: release-please
3131
runs-on: ubuntu-24.04
32-
if: ${{ needs.release-please.outputs.releases_created == true }}
32+
if: ${{ needs.release-please.outputs.release_created == true }}
3333
steps:
3434
- uses: actions/checkout@v4
3535
with:

0 commit comments

Comments
 (0)