Skip to content

Commit

Permalink
Update to use new $GITHUB_OUTPUT instead of set-output (deephaven#808)
Browse files Browse the repository at this point in the history
  • Loading branch information
mofojed authored Oct 13, 2022
1 parent e0d6f07 commit f6a5d6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
continue-on-error: true
name: check latest commit is less than a day
if: ${{ github.event_name == 'schedule' }}
run: test -z $(git rev-list --after="24 hours" ${{ github.sha }}) && echo "::set-output name=should_run::false"
run: test -z $(git rev-list --after="24 hours" ${{ github.sha }}) && echo "should_run=false" >> $GITHUB_OUTPUT
publish-nightly:
needs: check_date
if: ${{ needs.check_date.outputs.should_run != 'false' }}
Expand Down

0 comments on commit f6a5d6d

Please sign in to comment.