release: just testing #3
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
# This workflow runs when commits are pushed to main or a branch starting with | |
# "version-". It checks if any packages require a new release, and if so, | |
# creates the crates.io release and git tag. | |
name: Release | |
on: | |
push: | |
branches: | |
- main | |
- version-* | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo xtask auto-release |