Skip to content

Commit

Permalink
fix display
Browse files Browse the repository at this point in the history
  • Loading branch information
nhuet committed Apr 30, 2024
1 parent fdb00f3 commit b051c93
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ jobs:
run: |
echo "is_release=${{ startsWith(github.ref, 'refs/tags/v') }}" >> $GITHUB_OUTPUT
echo "is_push_on_default_branch=${{ (github.event_name == 'push') && (github.ref == format('refs/heads/{0}', github.event.repository.default_branch)) }}" >> $GITHUB_OUTPUT
echo "is_schedule="${{ github.event_name == 'schedule' }} >> $GITHUB_OUTPUT
echo "is_schedule=${{ github.event_name == 'schedule' }}" >> $GITHUB_OUTPUT
display-trigger:
needs: trigger
runs-on: ubuntu-latest
steps:
- run: |
echo is_release=${{ needs.trigger.is_release }}
echo is_push_on_default_branch=${{ needs.trigger.is_push_on_default_branch }}
echo is_schedule=${{ needs.trigger.is_schedule }}
echo is_release=${{ needs.trigger.outputs.is_release }}
echo is_push_on_default_branch=${{ needs.trigger.outputs.is_push_on_default_branch }}
echo is_schedule=${{ needs.trigger.outputs.is_schedule }}
only-on-master:
needs: [trigger]
Expand Down

0 comments on commit b051c93

Please sign in to comment.