Skip to content

Set up release-plz #707

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Release-plz

permissions:
pull-requests: write
contents: write

on:
push: { branches: [master] }

jobs:
# Release unpublished packages.
release-plz-release:
name: Release-plz release
runs-on: ubuntu-24.04
if: ${{ github.repository_owner == 'rust-lang' }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Rust toolchain
run: rustup update stable --no-self-update && rustup default stable
- name: Run release-plz
uses: release-plz/[email protected]
with:
command: release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

# Create a PR with the new versions and changelog, preparing the next release.
release-plz-pr:
name: Release-plz PR
runs-on: ubuntu-24.04
if: ${{ github.repository_owner == 'rust-lang' }}
concurrency:
group: release-plz-${{ github.ref }}
cancel-in-progress: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Rust toolchain
run: rustup update stable --no-self-update && rustup default stable
- name: Run release-plz
uses: release-plz/[email protected]
with:
command: release-pr
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
1 change: 1 addition & 0 deletions crates/cpp_smoke_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version = "0.1.0"
authors = ["Nick Fitzgerald <[email protected]>"]
edition = "2021"
build = "build.rs"
publish = false

[build-dependencies]
cc = "1.0"
Expand Down
1 change: 1 addition & 0 deletions crates/debuglink/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "debuglink"
version = "0.1.0"
edition = "2021"
publish = false

[dependencies]
backtrace = { path = "../.." }
1 change: 1 addition & 0 deletions crates/line-tables-only/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "line-tables-only"
version = "0.1.0"
edition = "2021"
publish = false

[build-dependencies]
cc = "1.0"
Expand Down
1 change: 1 addition & 0 deletions crates/macos_frames_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "macos_frames_test"
version = "0.1.0"
authors = ["Aaron Hill <[email protected]>"]
edition = "2021"
publish = false

[dependencies.backtrace]
path = "../.."
1 change: 1 addition & 0 deletions crates/without_debuginfo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "without_debuginfo"
version = "0.1.0"
authors = ["Alex Crichton <[email protected]>"]
edition = "2021"
publish = false

[dependencies.backtrace]
path = "../.."
Expand Down
Loading