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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
27 changes: 27 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Release-plz

permissions:
pull-requests: write
contents: write

on:
push:
branches:
- master

jobs:
release-plz:
name: Release-plz
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Rust (rustup)
run: rustup update nightly --no-self-update && rustup default nightly
- name: Run release-plz
uses: MarcoIeni/[email protected]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this seems to now be at https://github.com/release-plz/action

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