Close prepared statement (#28) #11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "Cargo.toml" | |
| jobs: | |
| crates: | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: crates.io | |
| url: https://crates.io/crates/arrow_cli | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Rust toolchain | |
| uses: ./.github/actions/check | |
| with: | |
| cache-key: publish | |
| - name: Setup Cargo Release | |
| run: | | |
| cargo install cargo-quickinstall | |
| cargo quickinstall cargo-release | |
| - name: Release to crates.io | |
| env: | |
| CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
| run: | | |
| cargo release publish --execute --no-confirm | |