@codfish/actions-playground 0.0.0-PR-98--f43d338 → 0.0.0-PR-98--ca1971b
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.
|
@@ -60,6 +60,62 @@ jobs:
|
|
|
60
60
|
exit 1
|
|
61
61
|
fi
|
|
62
62
|
|
|
63
|
+
- name: semantic release dry run
|
|
64
|
+
uses: docker://ghcr.io/codfish/semantic-release-action@sha256:327a3ce08284f9dd9b83b607e3f668dae90139e68ce90780b0a43a09d577dc3a
|
|
65
|
+
with:
|
|
66
|
+
dry-run: true
|
|
67
|
+
additional-packages: |
|
|
68
|
+
['@google/semantic-release-replace-plugin', '@semantic-release/git', 'conventional-changelog-conventionalcommits@7']
|
|
69
|
+
plugins: |
|
|
70
|
+
[
|
|
71
|
+
'@semantic-release/commit-analyzer',
|
|
72
|
+
[
|
|
73
|
+
'@google/semantic-release-replace-plugin',
|
|
74
|
+
{
|
|
75
|
+
'replacements': [
|
|
76
|
+
{
|
|
77
|
+
'files': ['Dockerfile'],
|
|
78
|
+
'from': 'RELEASE_VERSION=.*',
|
|
79
|
+
'to': 'RELEASE_VERSION=${nextRelease.version}'
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
'files': ['provisioning/Chart.yml'],
|
|
83
|
+
'from': 'ersion: .*',
|
|
84
|
+
'to': 'ersion: ${nextRelease.version}'
|
|
85
|
+
}
|
|
86
|
+
]
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
[ '@semantic-release/git', {'assets': ['Dockerfile', 'provisioning/Chart.yml']} ],
|
|
90
|
+
[
|
|
91
|
+
"@semantic-release/release-notes-generator",
|
|
92
|
+
{
|
|
93
|
+
"preset": "conventionalcommits",
|
|
94
|
+
"presetConfig": {
|
|
95
|
+
"types": [
|
|
96
|
+
{ type: 'feat', section: 'Features', hidden: false },
|
|
97
|
+
{ type: 'fix', section: 'Bug Fixes', hidden: false },
|
|
98
|
+
{ type: 'perf', section: 'Performance Improvements', hidden: false },
|
|
99
|
+
{ type: 'revert', section: 'Reverts', hidden: false },
|
|
100
|
+
{ type: 'docs', section: 'Other Updates', hidden: false },
|
|
101
|
+
{ type: 'style', section: 'Other Updates', hidden: false },
|
|
102
|
+
{ type: 'chore', section: 'Other Updates', hidden: false },
|
|
103
|
+
{ type: 'refactor', section: 'Other Updates', hidden: false },
|
|
104
|
+
{ type: 'test', section: 'Other Updates', hidden: false },
|
|
105
|
+
{ type: 'build', section: 'Other Updates', hidden: false },
|
|
106
|
+
{ type: 'ci', section: 'Other Updates', hidden: false }
|
|
107
|
+
]
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
],
|
|
111
|
+
'@semantic-release/npm',
|
|
112
|
+
'@semantic-release/github'
|
|
113
|
+
]
|
|
114
|
+
pnpm-dest: ${{ steps.pnpm-setup.outputs.dest }}
|
|
115
|
+
env:
|
|
116
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
117
|
+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
118
|
+
|
|
63
119
|
- name: Retrieve text file
|
|
64
120
|
uses: actions/download-artifact@v4
|
|
65
121
|
with:
|
package/package.json
CHANGED