Skip to content

Commit 284ea3f

Browse files
committed
feat: release please workflow
1 parent 58338d8 commit 284ea3f

3 files changed

Lines changed: 38 additions & 0 deletions

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Release Please
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
permissions:
9+
contents: write
10+
pull-requests: write
11+
12+
jobs:
13+
release-please:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: googleapis/release-please-action@v4
17+
with:
18+
token: ${{ secrets.GITHUB_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+
".": "1.0.1"
3+
}

release-please-config.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"packages": {
3+
".": {
4+
"release-type": "simple",
5+
"include-component-in-tag": false,
6+
"tag-separator": "",
7+
"include-v-in-tag": false,
8+
"extra-files": [
9+
{
10+
"type": "yaml",
11+
"path": "galaxy.yml",
12+
"jsonpath": "$.version"
13+
}
14+
]
15+
}
16+
}
17+
}

0 commit comments

Comments
 (0)