We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cea3458 commit 6c39f64Copy full SHA for 6c39f64
.github/workflows/release-please.yml
@@ -21,12 +21,13 @@ jobs:
21
outputs:
22
release_created: ${{ steps.release.outputs.release_created }}
23
tag: ${{ steps.release.outputs.tag_name }}
24
- info: ${{ toJSON(steps.release.outputs) }}
25
steps:
26
- uses: googleapis/release-please-action@v4
27
id: release
28
with:
29
release-type: php
+ - name: Output release variables
30
+ run: echo ${{ toJSON(steps.release.outputs) }}
31
upload_phar:
32
needs:
33
- release-please
@@ -39,8 +40,6 @@ jobs:
39
40
41
name: build-${{ github.sha }}-8.3
42
path: mysql2jsonl
- - name: Print for debug release output
43
- run: echo ${{ needs.release-please.outputs.info }}
44
- name: Release artifact
45
run: gh release upload ${{ needs.release-please.outputs.tag }} mysql2jsonl
46
env:
0 commit comments