Skip to content

Commit

Permalink
Declare output for job
Browse files Browse the repository at this point in the history
  • Loading branch information
robinsonzimmermann committed Apr 23, 2024
1 parent 5d7e03d commit 24e91f4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
jobs:
check-unpublished:
runs-on: ubuntu-latest
outputs:
should_publish: ${{ steps.should-publish.outputs.should_publish }}
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -20,4 +22,4 @@ jobs:
runs-on: ubuntu-latest
needs: check-unpublished
steps:
- run: echo ${{needs.check-unpublished.outputs.should_publish}}
- run: echo ${ {needs.check-unpublished.outputs.should_publish }}

0 comments on commit 24e91f4

Please sign in to comment.