diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-30 04:54:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-30 04:54:49 +0000 |
commit | 3baf961bf84d7a67c838d6bc09cc5f0fe90a35b4 (patch) | |
tree | dc974c69ee45867df73e46342261aa658eb50392 /.github | |
parent | Releasing debian version 25.21.3-1. (diff) | |
download | sqlglot-3baf961bf84d7a67c838d6bc09cc5f0fe90a35b4.tar.xz sqlglot-3baf961bf84d7a67c838d6bc09cc5f0fe90a35b4.zip |
Merging upstream version 25.24.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/python-publish.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index fcb750b..f58f792 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -15,10 +15,13 @@ jobs: deploy: ${{ steps.check_deploy.outputs.deploy }} steps: - uses: actions/checkout@v3 + with: + fetch-depth: 0 - id: check_deploy run: | - bash ./.github/workflows/should_deploy_sqlglotrs.sh - if [ $? -eq 0 ]; then echo "deploy=true" >> $GITHUB_OUTPUT; fi + bash ./.github/workflows/should_deploy_sqlglotrs.sh \ + && echo "deploy=true" >> $GITHUB_OUTPUT \ + || echo "deploy=false" >> $GITHUB_OUTPUT build-rs: needs: should-deploy-rs |