Merge pull request #344 from 0xPolygonMiden/greenhat/i339-expose-modu… #59
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
# Runs `release-plz release` only after the release PR (starts with `release-plz-`) | |
# is merged to the next branch. See `release_always = false` in `release-plz.toml` | |
# Publishes any unpublished crates when. | |
# Does nothing if all crates are already published (i.e. have their versions on crates.io). | |
# Does not create/update release PRs. | |
# The crate version bumping and changelog generation is done via the `release-plz update` CLI command. | |
# Then manually create a release PR(starts with `release-plz-`) with the proposed changes and | |
# when the PR is merged this action will publish the crates. | |
# See CONTRIBUTING.md for more details. | |
name: release-plz | |
on: | |
push: | |
branches: | |
- next | |
jobs: | |
release-plz: | |
name: release-plz | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
run: | | |
rustup update --no-self-update | |
rustc --version | |
- name: Cache Cargo | |
uses: Swatinem/rust-cache@v2 | |
with: | |
save-if: ${{ github.ref == 'refs/heads/next' }} | |
- name: Publish | |
uses: MarcoIeni/release-plz-action@v0.5 | |
with: | |
# Only run the `release` command that publishes any unpublished crates. | |
command: release | |
# `manifest_path` is omitted because it defaults to the root directory | |
# manifest_path: "..." | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} |