Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

Commit

Permalink
trying workflow_call now
Browse files Browse the repository at this point in the history
  • Loading branch information
tanderson-ld committed Feb 12, 2024
1 parent a6dbd13 commit 34ea689
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
contents: write # Contents and pull-requests are for release-please to make releases.
pull-requests: write

outputs:
releases_created: ${{ steps.release.outputs.releases_created }}

steps:
- uses: google-github-actions/release-please-action@v4
id: release
Expand All @@ -25,7 +28,7 @@ jobs:
call-workflow-passing-data:
needs: release-please
uses: ./.github/workflows/publish.yml
if: ${{ release-please.steps.release.outputs.releases_created == 'true' }}
if: ${{ needs.release-please.outputs.releases_created == 'true' }}
with:
run_tests-path: true
dry_run: true

0 comments on commit 34ea689

Please sign in to comment.