Further improved decimal to floating point conversion in Microsoft SQ… #21
Workflow file for this run
This file contains 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
on: | |
workflow_dispatch: {} | |
push: | |
# Sequence of patterns matched against refs/tags | |
tags: | |
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | |
name: Publish | |
jobs: | |
publish: | |
name: Publish | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
- run: | | |
cargo publish ${ARGS} --package sqlx-rt-oldapi | |
cargo publish ${ARGS} --package sqlx-core-oldapi | |
cargo publish ${ARGS} --package sqlx-macros-oldapi | |
cargo publish ${ARGS} --package sqlx-oldapi | |
env: | |
ARGS: | |
--token ${{ secrets.CRATES_TOKEN }} | |
--no-default-features | |
--features runtime-actix-rustls |