Skip to content

Commit dd0ed36

Browse files
Merge pull request #68 from NFDI4Chem/development
fix: release please issue
2 parents 2b1e860 + 5c8b885 commit dd0ed36

File tree

3 files changed

+26
-27
lines changed

3 files changed

+26
-27
lines changed

.release-please-config.json

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +0,0 @@
1-
{
2-
"packages": {
3-
".": {
4-
"release-type": "node",
5-
"package-name": "nmrxiv-nodejs-microservice",
6-
"changelog-sections": [
7-
{"type": "feat", "section": "Features"},
8-
{"type": "feature", "section": "Features"},
9-
{"type": "fix", "section": "Bug Fixes"},
10-
{"type": "perf", "section": "Performance Improvements"},
11-
{"type": "revert", "section": "Reverts"},
12-
{"type": "docs", "section": "Documentation"},
13-
{"type": "style", "section": "Styles"},
14-
{"type": "chore", "section": "Miscellaneous Chores"},
15-
{"type": "refactor", "section": "Code Refactoring"},
16-
{"type": "test", "section": "Tests"},
17-
{"type": "build", "section": "Build System"},
18-
{"type": "ci", "section": "Continuous Integration"}
19-
],
20-
"extra-files": [
21-
"package.json"
22-
]
23-
}
24-
},
25-
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
26-
}

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.4.0"
2+
".": "0.7.0"
33
}

release-please-v3-fallback.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Alternative Minimal Release-Please Workflow
2+
# Replace your current workflow with this if the configuration files don't work
3+
4+
name: release-please
5+
6+
on:
7+
push:
8+
branches:
9+
- main
10+
11+
jobs:
12+
e2etest:
13+
uses: NFDI4Chem/nmrxiv-nodejs-microservice/.github/workflows/e2e.yml@development
14+
15+
release-please:
16+
runs-on: ubuntu-latest
17+
needs: e2etest
18+
steps:
19+
- uses: google-github-actions/release-please-action@v3
20+
with:
21+
release-type: node
22+
package-name: nmrxiv-nodejs-microservice
23+
token: ${{ secrets.PAT}}
24+
# Only look at commits since last tag to avoid parsing old history
25+
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false}]'

0 commit comments

Comments
 (0)