@codfish/actions-playground 0.0.0-PR-48--bded230 → 0.0.0-PR-49--11992af
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -10,6 +10,11 @@ on:
|
|
|
10
10
|
- 'next-major'
|
|
11
11
|
- '+([0-9])?(.{+([0-9]),x}).x'
|
|
12
12
|
|
|
13
|
+
permissions:
|
|
14
|
+
id-token: write
|
|
15
|
+
contents: write
|
|
16
|
+
issues: write
|
|
17
|
+
|
|
13
18
|
jobs:
|
|
14
19
|
release:
|
|
15
20
|
runs-on: ubuntu-latest
|
|
@@ -78,7 +83,7 @@ jobs:
|
|
|
78
83
|
branches: |
|
|
79
84
|
['main', 'next', 'next-major', {name: 'beta', prerelease: true}, {name: 'alpha', prerelease: true}]
|
|
80
85
|
additional_packages: |
|
|
81
|
-
['@google/semantic-release-replace-plugin']
|
|
86
|
+
['@google/semantic-release-replace-plugin', '@semantic-release/git']
|
|
82
87
|
plugins: |
|
|
83
88
|
[
|
|
84
89
|
'@semantic-release/commit-analyzer',
|
|
@@ -117,12 +122,13 @@ jobs:
|
|
|
117
122
|
]
|
|
118
123
|
}
|
|
119
124
|
],
|
|
125
|
+
[ '@semantic-release/git', {'assets': ['Dockerfile', 'provisioning/Chart.yml']} ],
|
|
120
126
|
'@semantic-release/release-notes-generator',
|
|
121
127
|
'@semantic-release/npm',
|
|
122
|
-
|
|
128
|
+
'@semantic-release/github'
|
|
123
129
|
]
|
|
124
130
|
env:
|
|
125
|
-
GITHUB_TOKEN: ${{ secrets.
|
|
131
|
+
GITHUB_TOKEN: ${{ secrets.SEMANTIC_GH_TOKEN }}
|
|
126
132
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
127
133
|
|
|
128
134
|
- shell: bash
|
package/package.json
CHANGED