We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4f9b80 commit 4d7b89dCopy full SHA for 4d7b89d
.github/workflows/deploy_latest_release.yml
@@ -80,11 +80,11 @@ jobs:
80
runs-on: ubuntu-latest
81
steps:
82
- name: Continue deployment?
83
- if: ${{ needs.check-latest-release.outputs.IS_LATEST_RELEASE }} == 'true'
+ if: needs.check-latest-release.outputs.IS_LATEST_RELEASE == 'true'
84
run: |-
85
- echo "Input: ${{ needs.check-latest-release.outputs.IS_LATEST_RELEASE }}"
86
- echo "Deploy is not for the latest release. Stopping deployment"
87
- exit 0
+ echo "Input: ${{ needs.check-latest-release.outputs.IS_LATEST_RELEASE }}"
+ echo "Deploy is not for the latest release. Stopping deployment"
+ exit 0
88
89
- name: Checkout
90
uses: actions/checkout@v4
0 commit comments