Skip to content

Commit

Permalink
Chore: refactor publish workflow for sqlglotrs releasing
Browse files Browse the repository at this point in the history
  • Loading branch information
georgesittas committed May 4, 2024
1 parent 8b839d2 commit 4dbcd4f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
deploy: ${{ steps.set_deploy.outputs.deploy }}
steps:
- uses: actions/checkout@v3
- name: Check if sqlglotrs should be deployed
run: bash ./.github/workflows/should_deploy_sqlglotrs.sh
- id: set_deploy
run: echo "deploy=true" >> $GITHUB_OUTPUT
- id: check_deploy
run: |
bash ./.github/workflows/should_deploy_sqlglotrs.sh
if [ $? -eq 0 ]; then echo "deploy=true" >> $GITHUB_OUTPUT; fi
build-rs:
needs: should-deploy-rs
Expand Down

0 comments on commit 4dbcd4f

Please sign in to comment.