Skip to content

Commit a95bb03

Browse files
committed
fix(ci): release-plz again
1 parent 2c6baba commit a95bb03

File tree

21 files changed

+42
-65
lines changed

21 files changed

+42
-65
lines changed

.github/workflows/release-plz.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Release-plz
2+
3+
permissions:
4+
pull-requests: write
5+
contents: write
6+
7+
on:
8+
push:
9+
branches:
10+
- main
11+
12+
jobs:
13+
release-plz:
14+
name: Release-plz
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout repository
18+
uses: actions/checkout@v4
19+
with:
20+
fetch-depth: 0
21+
- name: Install Rust toolchain
22+
uses: dtolnay/rust-toolchain@stable
23+
- name: Run release-plz
24+
uses: MarcoIeni/release-plz-action@v0.5
25+
env:
26+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

.github/workflows/release_please.yml

-19
This file was deleted.

.github/workflows/welcome-bot.yml

-35
This file was deleted.

.release-please-manifest.json

-1
This file was deleted.

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ edition = "2021"
4949
license = "MPL-2.0"
5050
authors = ["Florian Dieminger <me@fiji-flo.de>"]
5151
rust-version = "1.80"
52+
publish = false
5253

5354
[workspace.dependencies]
5455
rari-doc = { path = "crates/rari-doc" }

crates/css-definition-syntax/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
77
rust-version.workspace = true
8+
publish.workspace = true
89

910
[dependencies]
1011
thiserror.workspace = true

crates/css-syntax-types/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
77
rust-version.workspace = true
8+
publish.workspace = true
89

910
[dependencies]
1011
serde_json.workspace = true

crates/css-syntax/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
77
rust-version.workspace = true
8+
publish.workspace = true
89

910
[dependencies]
1011
thiserror.workspace = true

crates/diff-test/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
77
rust-version.workspace = true
8+
publish.workspace = true
89

910
[dependencies]
1011
rayon.workspace = true

crates/rari-data/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
77
rust-version.workspace = true
8+
publish.workspace = true
89

910
[dependencies]
1011
rari-utils.workspace = true

crates/rari-deps/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
77
rust-version.workspace = true
8+
publish.workspace = true
89

910
[dependencies]
1011
rari-utils.workspace = true

crates/rari-doc/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
77
rust-version.workspace = true
8+
publish.workspace = true
89

910
[dependencies]
1011
thiserror.workspace = true

crates/rari-l10n/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
77
rust-version.workspace = true
8+
publish.workspace = true
89

910
[dependencies]
1011
rari-types.workspace = true

crates/rari-linter/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
77
rust-version.workspace = true
8+
publish.workspace = true
89

910
[dependencies]
1011
thiserror.workspace = true

crates/rari-md/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
77
rust-version.workspace = true
8+
publish.workspace = true
89

910
[dependencies]
1011
anyhow.workspace = true

crates/rari-templ-func/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
77
rust-version.workspace = true
8+
publish.workspace = true
89

910
[lib]
1011
proc-macro = true

crates/rari-tools/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
77
rust-version.workspace = true
8+
publish.workspace = true
89

910
[dependencies]
1011
rari-types.workspace = true

crates/rari-types/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
77
rust-version.workspace = true
8+
publish.workspace = true
89

910
[features]
1011
testing = []

crates/rari-utils/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
77
rust-version.workspace = true
8+
publish.workspace = true
89

910
[dependencies]
1011
thiserror.workspace = true

release-please-config.json

-9
This file was deleted.

release-plz.toml

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ semver_check = false
99
[[package]]
1010
name = "rari"
1111
git_tag_name = "v{{ version }}"
12-
publish = false
1312
git_tag_enable = true
1413
git_release_enable = true
1514
git_release_type = "auto"

0 commit comments

Comments
 (0)