Bump version (#465)

This commit is contained in:
Yota Toyama
2025-09-19 08:44:19 -07:00
committed by GitHub
parent 03b3e65fc8
commit 5a34f4f9ef
4 changed files with 33 additions and 29 deletions

View File

@@ -9,6 +9,8 @@ concurrency:
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
release:
permissions:
id-token: write
runs-on: ubuntu-latest
environment: ${{ github.ref == 'refs/heads/main' && 'release' || '' }}
steps:
@@ -17,7 +19,9 @@ jobs:
submodules: true
- uses: raviqqe/cargo-cache@v1
- run: cargo install cargo-workspaces
- run: cargo workspaces publish -y --from-git --no-verify
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- uses: rust-lang/crates-io-auth-action@v1
id: auth
if: github.ref == 'refs/heads/main'
- run: cargo workspaces publish -y --from-git ${{ github.ref != 'refs/heads/main' && '--dry-run' || '' }}
env:
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}