@codfish/actions-playground 5.1.0 → 5.2.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.
- package/.github/workflows/release.yml +11 -30
- package/Dockerfile +1 -1
- package/package.json +1 -1
- package/provisioning/Chart.yml +2 -2
|
@@ -27,6 +27,15 @@ jobs:
|
|
|
27
27
|
with:
|
|
28
28
|
node-version: 18.x
|
|
29
29
|
|
|
30
|
+
- name: semantic release dry run
|
|
31
|
+
uses: codfish/semantic-release-action@upgrade
|
|
32
|
+
id: semantic-dry-run
|
|
33
|
+
with:
|
|
34
|
+
dry-run: true
|
|
35
|
+
env:
|
|
36
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
37
|
+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
38
|
+
|
|
30
39
|
- shell: bash
|
|
31
40
|
run: |
|
|
32
41
|
echo "DOCKER_TAGS=main-${GITHUB_SHA},main,latest" >> $GITHUB_ENV;
|
|
@@ -48,39 +57,11 @@ jobs:
|
|
|
48
57
|
- name: docker build
|
|
49
58
|
run: docker build -t codfish/actions-playground:latest .
|
|
50
59
|
|
|
51
|
-
- name: testing
|
|
52
|
-
run: git ls-remote
|
|
53
|
-
|
|
54
|
-
- name: semantic release dry run
|
|
55
|
-
uses: codfish/semantic-release-action@18-17
|
|
56
|
-
id: semantic-dry-run
|
|
57
|
-
with:
|
|
58
|
-
dry_run: true
|
|
59
|
-
branches: |
|
|
60
|
-
[
|
|
61
|
-
'main',
|
|
62
|
-
'next',
|
|
63
|
-
'next-major',
|
|
64
|
-
{name: 'beta', prerelease: true},
|
|
65
|
-
{name: 'alpha', prerelease: true}
|
|
66
|
-
]
|
|
67
|
-
env:
|
|
68
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
69
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
70
|
-
|
|
71
60
|
- name: semantic-release
|
|
72
|
-
uses: codfish/semantic-release-action@
|
|
61
|
+
uses: codfish/semantic-release-action@upgrade
|
|
73
62
|
id: semantic
|
|
74
63
|
with:
|
|
75
|
-
|
|
76
|
-
[
|
|
77
|
-
'main',
|
|
78
|
-
'next',
|
|
79
|
-
'next-major',
|
|
80
|
-
{name: 'beta', prerelease: true},
|
|
81
|
-
{name: 'alpha', prerelease: true}
|
|
82
|
-
]
|
|
83
|
-
additional_packages: |
|
|
64
|
+
additional-packages: |
|
|
84
65
|
['@google/semantic-release-replace-plugin', '@semantic-release/git']
|
|
85
66
|
plugins: |
|
|
86
67
|
[
|
package/Dockerfile
CHANGED
package/package.json
CHANGED
package/provisioning/Chart.yml
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
appVersion: 5.
|
|
1
|
+
appVersion: 5.2.0
|
|
2
2
|
name: actions-playground
|
|
3
|
-
version: 5.
|
|
3
|
+
version: 5.2.0
|