Skip to content

Commit

Permalink
add debug job
Browse files Browse the repository at this point in the history
  • Loading branch information
georgesittas committed May 11, 2024
1 parent 39b1653 commit 298febd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,15 @@ jobs:
if [ $? -eq 0 ]; then echo "deploy=true" >> $GITHUB_OUTPUT; fi
cat $GITHUB_OUTPUT
test-debug:
runs-on: ubuntu-latest
needs: should-deploy-rs
steps:
- uses: actions/checkout@v3
- run: |
echo "Check 'deploy'"
echo "${{ needs.should-deploy-rs.outputs.deploy }}"
build-rs:
needs: should-deploy-rs
if: needs.should-deploy-rs.outputs.deploy == 'true'
Expand Down
2 changes: 1 addition & 1 deletion sqlglotrs/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sqlglotrs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sqlglotrs"
version = "0.2.2"
version = "0.2.3"
edition = "2021"

[lib]
Expand Down

0 comments on commit 298febd

Please sign in to comment.