@codfish/actions-playground 0.0.0-PR-48--bded230 → 0.0.0-PR-52--bb9e07b
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.
- package/.github/workflows/release.yml +6 -5
- package/Dockerfile +1 -1
- package/docs/.gitignore +1 -1
- package/package.json +1 -1
- package/provisioning/Chart.yml +2 -2
|
@@ -49,7 +49,7 @@ jobs:
|
|
|
49
49
|
run: docker build -t codfish/actions-playground:latest .
|
|
50
50
|
|
|
51
51
|
- name: semantic release dry run
|
|
52
|
-
uses:
|
|
52
|
+
uses: codfish/semantic-release-action@upgrade
|
|
53
53
|
id: semantic-dry-run
|
|
54
54
|
with:
|
|
55
55
|
dry_run: true
|
|
@@ -72,13 +72,13 @@ jobs:
|
|
|
72
72
|
SEMANTIC_OUTPUTS: ${{ toJson(steps.semantic-dry-run.outputs) }}
|
|
73
73
|
|
|
74
74
|
- name: semantic release
|
|
75
|
-
uses:
|
|
75
|
+
uses: codfish/semantic-release-action@upgrade
|
|
76
76
|
id: semantic
|
|
77
77
|
with:
|
|
78
78
|
branches: |
|
|
79
79
|
['main', 'next', 'next-major', {name: 'beta', prerelease: true}, {name: 'alpha', prerelease: true}]
|
|
80
80
|
additional_packages: |
|
|
81
|
-
['@google/semantic-release-replace-plugin']
|
|
81
|
+
['@google/semantic-release-replace-plugin', '@semantic-release/git']
|
|
82
82
|
plugins: |
|
|
83
83
|
[
|
|
84
84
|
'@semantic-release/commit-analyzer',
|
|
@@ -117,12 +117,13 @@ jobs:
|
|
|
117
117
|
]
|
|
118
118
|
}
|
|
119
119
|
],
|
|
120
|
+
[ '@semantic-release/git', {'assets': ['Dockerfile', 'provisioning/Chart.yml']} ],
|
|
120
121
|
'@semantic-release/release-notes-generator',
|
|
121
122
|
'@semantic-release/npm',
|
|
122
|
-
|
|
123
|
+
'@semantic-release/github'
|
|
123
124
|
]
|
|
124
125
|
env:
|
|
125
|
-
GITHUB_TOKEN: ${{ secrets.
|
|
126
|
+
GITHUB_TOKEN: ${{ secrets.SEMANTIC_GH_TOKEN }}
|
|
126
127
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
127
128
|
|
|
128
129
|
- shell: bash
|
package/Dockerfile
CHANGED
package/docs/.gitignore
CHANGED
package/package.json
CHANGED
package/provisioning/Chart.yml
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
appVersion: 4.
|
|
1
|
+
appVersion: 4.9.1
|
|
2
2
|
name: actions-playground
|
|
3
|
-
version: 4.
|
|
3
|
+
version: 4.9.1
|