File tree Expand file tree Collapse file tree 1 file changed +44
-2
lines changed Expand file tree Collapse file tree 1 file changed +44
-2
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,53 @@ jobs:
14
14
uses : actions/checkout@v4
15
15
16
16
- name : Setup release please
17
- uses : googleapis/release-please-action@v4
17
+ uses : googleapis/release-please-action@v3
18
18
id : release
19
19
with :
20
20
release-type : node
21
-
21
+ changelog-types : |
22
+ [
23
+ {
24
+ "type": "feat",
25
+ "section": "Features",
26
+ "hidden": false
27
+ },
28
+ {
29
+ "type": "fix",
30
+ "section": "Bug Fixes",
31
+ "hidden": false
32
+ },
33
+ {
34
+ "type": "chore",
35
+ "section": "Miscellaneous",
36
+ "hidden": false
37
+ },
38
+ {
39
+ "type": "ci",
40
+ "section": "Continuous Integration",
41
+ "hidden": false
42
+ },
43
+ {
44
+ "type": "docs",
45
+ "section": "Documentation",
46
+ "hidden": false
47
+ },
48
+ {
49
+ "type": "refactor",
50
+ "section": "Refactoring",
51
+ "hidden": false
52
+ },
53
+ {
54
+ "type": "perf",
55
+ "section": "Performance",
56
+ "hidden": false
57
+ },
58
+ {
59
+ "type": "test",
60
+ "section": "Tests",
61
+ "hidden": false
62
+ }
63
+ ]
22
64
- name : Login into GitHub Container Registry
23
65
if : ${{ steps.release.outputs.release_created }}
24
66
run : echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin
You can’t perform that action at this time.
0 commit comments