We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 760e747 commit cea3458Copy full SHA for cea3458
.github/workflows/release-please.yml
@@ -19,8 +19,9 @@ jobs:
19
needs: verify-release
20
runs-on: ubuntu-24.04
21
outputs:
22
- release_created: ${{ steps.release.outputs.releases_created }}
+ 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
@@ -38,6 +39,8 @@ jobs:
38
39
with:
40
name: build-${{ github.sha }}-8.3
41
path: mysql2jsonl
42
+ - 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