Skip to content

Commit 1ad41a8

Browse files
committed
ci: Update release please
1 parent aa1b03c commit 1ad41a8

File tree

3 files changed

+79
-19
lines changed

3 files changed

+79
-19
lines changed

.github/workflows/release.yml

+7-19
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,17 @@ name: Release
22
on:
33
push:
44
branches:
5-
- main
5+
- next
6+
7+
permissions:
8+
contents: write
9+
pull-requests: write
610

711
jobs:
812
release-please:
913
runs-on: ubuntu-latest
1014
steps:
11-
- uses: google-github-actions/release-please-action@v3
12-
id: release
15+
- uses: googleapis/release-please-action@v4
1316
with:
17+
target-branch: main
1418
release-type: node
15-
package-name: rentman-dashboard
16-
changelog-types: '[{"type":"feat","section":"New","hidden":false},{"type":"fix","section":"Changed and fixed","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false}]'
17-
# - uses: actions/checkout@v2
18-
# with:
19-
# fetch-depth: 0
20-
# if: ${{ steps.release.outputs.release_created }}
21-
# - name: Azure Login
22-
# uses: azure/login@v1
23-
# with:
24-
# creds: ${{ secrets.AZURE_CREDENTIALS }}
25-
# if: ${{ steps.release.outputs.release_created }}
26-
# - name: Azure CLI script
27-
# uses: azure/CLI@v1
28-
# with:
29-
# inlineScript: |
30-
# az webapp up --resource-group frontendfestival --name FrontendFestival --runtime "NODE|18-lts"

.release-please-manifest.json

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

release-please-config.json

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
{
2+
"changelog-sections": [
3+
{
4+
"type": "feat",
5+
"section": "New",
6+
"hidden": false
7+
},
8+
{
9+
"type": "fix",
10+
"section": "Changed and/or fixed",
11+
"hidden": false
12+
},
13+
{
14+
"type": "chore",
15+
"section": "Miscellaneous",
16+
"hidden": false
17+
},
18+
{
19+
"type": "perf",
20+
"section": "Performance Improvements",
21+
"hidden": false
22+
},
23+
{
24+
"type": "revert",
25+
"section": "Reverts",
26+
"hidden": false
27+
},
28+
{
29+
"type": "docs",
30+
"section": "Documentation",
31+
"hidden": true
32+
},
33+
{
34+
"type": "style",
35+
"section": "Styles",
36+
"hidden": true
37+
},
38+
{
39+
"type": "chore",
40+
"section": "Miscellaneous Chores",
41+
"hidden": true
42+
},
43+
{
44+
"type": "refactor",
45+
"section": "Code Refactoring",
46+
"hidden": true
47+
},
48+
{
49+
"type": "test",
50+
"section": "Tests",
51+
"hidden": true
52+
},
53+
{
54+
"type": "build",
55+
"section": "Build System",
56+
"hidden": true
57+
},
58+
{
59+
"type": "ci",
60+
"section": "Continuous Integration",
61+
"hidden": true
62+
}
63+
],
64+
"packages": {
65+
".": {
66+
"release-type": "node"
67+
}
68+
}
69+
}

0 commit comments

Comments
 (0)