Skip to content

Commit 9de35a4

Browse files
authored
chore: bootstrap releases for path: . (#254)
Configuring release-please for path: .
1 parent 7302c7f commit 9de35a4

4 files changed

Lines changed: 42 additions & 1 deletion

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
6+
permissions:
7+
contents: write
8+
issues: write
9+
pull-requests: write
10+
11+
name: release-please
12+
13+
jobs:
14+
release-please:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/create-github-app-token@v2
18+
id: generate-token
19+
with:
20+
app-id: ${{ secrets.DS_RELEASE_BOT_ID }}
21+
private-key: ${{ secrets.DS_RELEASE_BOT_PRIVATE_KEY }}
22+
- uses: googleapis/release-please-action@v4
23+
id: release-please
24+
with:
25+
token: ${{ steps.generate-token.outputs.token }}

.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.13.1"
3+
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"url": "https://github.com/developmentseed/stac-map/issues"
2121
},
2222
"license": "MIT",
23-
"version": "0.0.1",
23+
"version": "0.13.1",
2424
"type": "module",
2525
"scripts": {
2626
"dev": "vite",

release-please-config.json

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

0 commit comments

Comments
 (0)