Skip to content

Commit

Permalink
fix: Add more info on release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Aug 12, 2022
1 parent 2e05243 commit 24bd594
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/release-please.yml
Expand Up @@ -29,11 +29,22 @@ jobs:
- release-please
env:
release_please_info: ${{ needs.release-please.outputs.release_please_info }}
output: ${{ toJSON(needs.release-please.outputs) }}
paths_released: $${{ needs.release-please.outputs.paths_released }}
steps:
- name: Show Release Please Results
run: |
echo "PATHS: $paths_released"
echo "$release_please_info"
echo "${{ needs.release-please.outputs.paths_released }}"
echo OUTPUT
echo "$output"
- name: Release
if: ${{ needs.release-please.outputs.release_created }}
run: echo RELEASE

- name: No Release
if: ${{ !needs.release-please.outputs.release_created }}
run: echo Not Released

publish:
needs:
Expand Down

0 comments on commit 24bd594

Please sign in to comment.