@codfish/actions-playground 6.8.0 → 6.10.0
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.
|
@@ -80,13 +80,12 @@ jobs:
|
|
|
80
80
|
|
|
81
81
|
- run: cat Dockerfile
|
|
82
82
|
|
|
83
|
-
- name: install additional semantic release dependencies
|
|
84
|
-
run: pnpm add @google/semantic-release-replace-plugin @semantic-release/git conventional-changelog-conventionalcommits@7
|
|
85
|
-
|
|
86
83
|
- name: semantic-release
|
|
87
|
-
uses: codfish/semantic-release-action@
|
|
84
|
+
uses: docker://ghcr.io/codfish/semantic-release-action@sha256:327a3ce08284f9dd9b83b607e3f668dae90139e68ce90780b0a43a09d577dc3a
|
|
88
85
|
id: semantic
|
|
89
86
|
with:
|
|
87
|
+
additional-packages: |
|
|
88
|
+
['@google/semantic-release-replace-plugin', '@semantic-release/git', 'conventional-changelog-conventionalcommits@7']
|
|
90
89
|
plugins: |
|
|
91
90
|
[
|
|
92
91
|
'@semantic-release/commit-analyzer',
|
|
@@ -13,9 +13,17 @@ jobs:
|
|
|
13
13
|
cancel-in-progress: true
|
|
14
14
|
|
|
15
15
|
steps:
|
|
16
|
-
-
|
|
16
|
+
- name: 'Install pnpm'
|
|
17
|
+
id: pnpm-setup
|
|
18
|
+
uses: pnpm/action-setup@v4
|
|
17
19
|
with:
|
|
18
|
-
|
|
20
|
+
run_install: false
|
|
21
|
+
|
|
22
|
+
- uses: actions/setup-node@v5
|
|
23
|
+
with:
|
|
24
|
+
cache: 'pnpm'
|
|
25
|
+
node-version-file: '.nvmrc'
|
|
26
|
+
registry-url: 'https://registry.npmjs.org'
|
|
19
27
|
|
|
20
28
|
- name: install commitlint deps
|
|
21
29
|
run: pnpm add @commitlint/{cli,config-angular}
|
|
@@ -55,13 +55,57 @@ jobs:
|
|
|
55
55
|
if: steps.npm-cache.outputs.cache-hit != 'true'
|
|
56
56
|
run: pnpm install
|
|
57
57
|
|
|
58
|
-
- name: install additional semantic release dependencies
|
|
59
|
-
run: pnpm add @google/semantic-release-replace-plugin @semantic-release/git conventional-changelog-conventionalcommits@7
|
|
60
|
-
|
|
61
58
|
- name: semantic release dry run
|
|
62
|
-
uses: codfish/semantic-release-action@
|
|
59
|
+
uses: docker://ghcr.io/codfish/semantic-release-action@sha256:327a3ce08284f9dd9b83b607e3f668dae90139e68ce90780b0a43a09d577dc3a
|
|
63
60
|
with:
|
|
64
61
|
dry-run: true
|
|
62
|
+
additional-packages: |
|
|
63
|
+
['@google/semantic-release-replace-plugin', '@semantic-release/git', 'conventional-changelog-conventionalcommits@7']
|
|
64
|
+
plugins: |
|
|
65
|
+
[
|
|
66
|
+
'@semantic-release/commit-analyzer',
|
|
67
|
+
[
|
|
68
|
+
'@google/semantic-release-replace-plugin',
|
|
69
|
+
{
|
|
70
|
+
'replacements': [
|
|
71
|
+
{
|
|
72
|
+
'files': ['Dockerfile'],
|
|
73
|
+
'from': 'RELEASE_VERSION=.*',
|
|
74
|
+
'to': 'RELEASE_VERSION=${nextRelease.version}'
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
'files': ['provisioning/Chart.yml'],
|
|
78
|
+
'from': 'ersion: .*',
|
|
79
|
+
'to': 'ersion: ${nextRelease.version}'
|
|
80
|
+
}
|
|
81
|
+
]
|
|
82
|
+
}
|
|
83
|
+
],
|
|
84
|
+
[ '@semantic-release/git', {'assets': ['Dockerfile', 'provisioning/Chart.yml']} ],
|
|
85
|
+
[
|
|
86
|
+
"@semantic-release/release-notes-generator",
|
|
87
|
+
{
|
|
88
|
+
"preset": "conventionalcommits",
|
|
89
|
+
"presetConfig": {
|
|
90
|
+
"types": [
|
|
91
|
+
{ type: 'feat', section: 'Features', hidden: false },
|
|
92
|
+
{ type: 'fix', section: 'Bug Fixes', hidden: false },
|
|
93
|
+
{ type: 'perf', section: 'Performance Improvements', hidden: false },
|
|
94
|
+
{ type: 'revert', section: 'Reverts', hidden: false },
|
|
95
|
+
{ type: 'docs', section: 'Other Updates', hidden: false },
|
|
96
|
+
{ type: 'style', section: 'Other Updates', hidden: false },
|
|
97
|
+
{ type: 'chore', section: 'Other Updates', hidden: false },
|
|
98
|
+
{ type: 'refactor', section: 'Other Updates', hidden: false },
|
|
99
|
+
{ type: 'test', section: 'Other Updates', hidden: false },
|
|
100
|
+
{ type: 'build', section: 'Other Updates', hidden: false },
|
|
101
|
+
{ type: 'ci', section: 'Other Updates', hidden: false }
|
|
102
|
+
]
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
],
|
|
106
|
+
'@semantic-release/npm',
|
|
107
|
+
'@semantic-release/github'
|
|
108
|
+
]
|
|
65
109
|
pnpm-dest: ${{ steps.pnpm-setup.outputs.dest }}
|
|
66
110
|
env:
|
|
67
111
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
package/Dockerfile
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codfish/actions-playground",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.10.0",
|
|
4
4
|
"description": "My own testing ground for messing around with GitHub Actions.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
@@ -41,12 +41,9 @@
|
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@babel/runtime": "^7.7.4",
|
|
44
|
-
"@google/semantic-release-replace-plugin": "^1.2.7",
|
|
45
|
-
"@semantic-release/git": "^10.0.1",
|
|
46
44
|
"@testing-library/jest-dom": "^5.16.5",
|
|
47
45
|
"@testing-library/react": "^13.3.0",
|
|
48
46
|
"@testing-library/user-event": "^14.4.3",
|
|
49
|
-
"conventional-changelog-conventionalcommits": "^7.0.2",
|
|
50
47
|
"react": "^18.2.0",
|
|
51
48
|
"react-dom": "^18.2.0",
|
|
52
49
|
"react-scripts": "^5.0.1",
|
package/provisioning/Chart.yml
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
appVersion: 6.
|
|
1
|
+
appVersion: 6.10.0
|
|
2
2
|
name: actions-playground
|
|
3
|
-
version: 6.
|
|
3
|
+
version: 6.10.0
|