We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccd0aa3 commit 2c755d9Copy full SHA for 2c755d9
.github/workflows/release-pr-checks.yml
@@ -0,0 +1,21 @@
1
+name: Pre-release checks
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - release-plz-*
7
8
+jobs:
9
+ publish-dry-run:
10
+ name: Publish (dry-run)
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout repository
14
+ uses: actions/checkout@v5
15
+ with:
16
+ fetch-depth: 0
17
+ - name: Install Rust
18
+ uses: actions-rust-lang/setup-rust-toolchain@v1.8.0
19
+ - name: Publish to crates.io (dry-run)
20
+ run: |
21
+ cargo publish --dry-run --workspace
0 commit comments