Skip to content

Commit

Permalink
Fixed conditions for deploy tag workflow with bool cast
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrst88 committed Jun 7, 2023
1 parent a6d6971 commit d7ba6bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
uses: ./.github/workflows/server.update-config.yml
needs: [setup, update-config-validation]
with:
skip-update: ${{ needs.update-config-validation.outputs.skip }}
skip-update: ${{ fromJson(needs.update-config-validation.outputs.skip) }}
ref: ${{ needs.setup.outputs.config-tag }}
cluster: ${{ needs.setup.outputs.cluster }}
environment: ${{ needs.setup.outputs.environment }}
Expand Down

0 comments on commit d7ba6bc

Please sign in to comment.