Skip to content

Commit 9819c8b

Browse files
authored
Merge pull request #100 from semiotic-ai/ci_release_please
ci: Adding release-please
2 parents 0f33a1b + 90a115c commit 9819c8b

File tree

5 files changed

+41
-2
lines changed

5 files changed

+41
-2
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
6+
permissions:
7+
contents: write
8+
pull-requests: write
9+
10+
name: release-please
11+
12+
jobs:
13+
release-please:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: google-github-actions/release-please-action@v3
17+
with:
18+
command: manifest

.release-please-manifest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "0.0.0"
3+
}

release-please-config.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"changelog-path": "CHANGELOG.md",
3+
"release-type": "rust",
4+
"bump-minor-pre-major": true,
5+
"bump-patch-for-minor-pre-major": true,
6+
"prerelease": true,
7+
"draft": false,
8+
"packages": {
9+
"tap_core": {},
10+
"tap_aggregator": {}
11+
},
12+
"plugins": [
13+
{
14+
"type": "cargo-workspace"
15+
}
16+
],
17+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
18+
}

tap_aggregator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name="tap_aggregator"
3-
version.workspace = true
3+
version = "0.1.0"
44
edition.workspace = true
55
license.workspace = true
66
readme = "README.md"

tap_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name="tap_core"
3-
version.workspace = true
3+
version = "0.1.0"
44
edition.workspace = true
55
license.workspace = true
66

0 commit comments

Comments
 (0)