@codfish/actions-playground 6.8.0 → 6.9.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
84
  uses: codfish/semantic-release-action@pnpm
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',
@@ -55,13 +55,60 @@ 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
58
+ # - name: install additional semantic release dependencies
59
+ # run: pnpm add @google/semantic-release-replace-plugin @semantic-release/git conventional-changelog-conventionalcommits@7
60
60
 
61
61
  - name: semantic release dry run
62
62
  uses: codfish/semantic-release-action@pnpm
63
63
  with:
64
64
  dry-run: true
65
+ additional-packages: |
66
+ ['@google/semantic-release-replace-plugin', '@semantic-release/git', 'conventional-changelog-conventionalcommits@7']
67
+ plugins: |
68
+ [
69
+ '@semantic-release/commit-analyzer',
70
+ [
71
+ '@google/semantic-release-replace-plugin',
72
+ {
73
+ 'replacements': [
74
+ {
75
+ 'files': ['Dockerfile'],
76
+ 'from': 'RELEASE_VERSION=.*',
77
+ 'to': 'RELEASE_VERSION=${nextRelease.version}'
78
+ },
79
+ {
80
+ 'files': ['provisioning/Chart.yml'],
81
+ 'from': 'ersion: .*',
82
+ 'to': 'ersion: ${nextRelease.version}'
83
+ }
84
+ ]
85
+ }
86
+ ],
87
+ [ '@semantic-release/git', {'assets': ['Dockerfile', 'provisioning/Chart.yml']} ],
88
+ [
89
+ "@semantic-release/release-notes-generator",
90
+ {
91
+ "preset": "conventionalcommits",
92
+ "presetConfig": {
93
+ "types": [
94
+ { type: 'feat', section: 'Features', hidden: false },
95
+ { type: 'fix', section: 'Bug Fixes', hidden: false },
96
+ { type: 'perf', section: 'Performance Improvements', hidden: false },
97
+ { type: 'revert', section: 'Reverts', hidden: false },
98
+ { type: 'docs', section: 'Other Updates', hidden: false },
99
+ { type: 'style', section: 'Other Updates', hidden: false },
100
+ { type: 'chore', section: 'Other Updates', hidden: false },
101
+ { type: 'refactor', section: 'Other Updates', hidden: false },
102
+ { type: 'test', section: 'Other Updates', hidden: false },
103
+ { type: 'build', section: 'Other Updates', hidden: false },
104
+ { type: 'ci', section: 'Other Updates', hidden: false }
105
+ ]
106
+ }
107
+ }
108
+ ],
109
+ '@semantic-release/npm',
110
+ '@semantic-release/github'
111
+ ]
65
112
  pnpm-dest: ${{ steps.pnpm-setup.outputs.dest }}
66
113
  env:
67
114
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
package/Dockerfile CHANGED
@@ -12,7 +12,7 @@ RUN pnpm install
12
12
  COPY ./src ./src
13
13
  COPY ./public ./public
14
14
 
15
- ENV RELEASE_VERSION=6.8.0
15
+ ENV RELEASE_VERSION=6.9.0
16
16
 
17
17
  RUN pnpm build
18
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codfish/actions-playground",
3
- "version": "6.8.0",
3
+ "version": "6.9.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",
@@ -1,3 +1,3 @@
1
- appVersion: 6.8.0
1
+ appVersion: 6.9.0
2
2
  name: actions-playground
3
- version: 6.8.0
3
+ version: 6.9.0
package/test.txt CHANGED
@@ -4,6 +4,3 @@ test release with a chore
4
4
 
5
5
  test latest release
6
6
 
7
- feature release 2
8
-
9
- breaking update