Skip to content

Commit

Permalink
ci: fix conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
dexturr committed May 8, 2024
1 parent 1ea4c98 commit 63553bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/regenerate_protos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
include-preview-versions: true
previous-version: ${{ steps.current-vega-version.outputs.version }}
regenerate-protos:
if: needs.check-for-new-version.outputs.new-version === 'true'
needs: check-for-new-version
runs-on: ubuntu-latest
if: ${{ needs.check-for-new-version.outputs.new-version }}
steps:
- run: echo ${{ needs.check-for-new-version.outputs.current-version }}
- uses: actions/checkout@v3
Expand Down

0 comments on commit 63553bf

Please sign in to comment.