Skip to content

Commit 8190e9c

Browse files
authored
fix: add release please config (#23)
Release-As:1.0.0
1 parent 2d363be commit 8190e9c

File tree

5 files changed

+40
-1
lines changed

5 files changed

+40
-1
lines changed

Diff for: .circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2.1
33
executors:
44
ubuntu_vm:
55
machine:
6-
image: ubuntu-2004:202201-02
6+
image: ubuntu-2004:current
77

88
jobs:
99
run_starlark:

Diff for: .github/workflows/release-please.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
on:
2+
push:
3+
branches: [main]
4+
5+
6+
permissions:
7+
contents: write
8+
pull-requests: write
9+
10+
name: release-please
11+
12+
jobs:
13+
release-please:
14+
name: "Release please"
15+
runs-on: ubuntu-latest
16+
if: github.repository == 'kurtosis-tech/postgres-package'
17+
steps:
18+
- uses: googleapis/release-please-action@d1a8f221d7723166f48a584aebba00ef3f6febec # v4.1.4
19+
with:
20+
token: "${{ secrets.RELEASER_TOKEN }}"
21+
config-file: release-please-config.json
22+
manifest-file: .release-please-manifest.json

Diff for: .release-please-manifest.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "0.0.1"
3+
}

Diff for: release-please-config.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3+
"release-type": "simple",
4+
"bump-minor-pre-major": true,
5+
"bump-patch-for-minor-pre-major": true,
6+
"include-v-in-tag": false,
7+
"include-component-in-tag": false,
8+
"packages": {
9+
".": {
10+
"package-name": "postgres-package"
11+
}
12+
}
13+
}

Diff for: version.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.0.1

0 commit comments

Comments
 (0)