We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c17264 commit 2540e50Copy full SHA for 2540e50
.github/workflows/python-publish.yml
@@ -19,12 +19,9 @@ jobs:
19
fetch-depth: 0
20
- id: check_deploy
21
run: |
22
- bash ./.github/workflows/should_deploy_sqlglotrs.sh || exit_code=$?
23
- if [ $exit_code -eq 0 ]; then
24
- echo "deploy=true" >> $GITHUB_OUTPUT
25
- else
26
- echo "deploy=false" >> $GITHUB_OUTPUT
27
- fi
+ bash ./.github/workflows/should_deploy_sqlglotrs.sh \
+ && echo "deploy=true" >> $GITHUB_OUTPUT \
+ || echo "deploy=false" >> $GITHUB_OUTPUT
28
29
build-rs:
30
needs: should-deploy-rs
0 commit comments