@codfish/actions-playground 0.0.0-PR-52--bb9e07b → 0.0.0-PR-53--bb10798

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.
@@ -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: codfish/semantic-release-action@upgrade
52
+ uses: codfish/semantic-release-action@v2
53
53
  id: semantic-dry-run
54
54
  with:
55
55
  dry_run: true
@@ -65,14 +65,8 @@ jobs:
65
65
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
66
66
  NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
67
67
 
68
- - name: Dump semantic outputs
69
- if: steps.semantic-dry-run.outputs.new-release-published == 'true'
70
- run: echo "$SEMANTIC_OUTPUTS"
71
- env:
72
- SEMANTIC_OUTPUTS: ${{ toJson(steps.semantic-dry-run.outputs) }}
73
-
74
- - name: semantic release
75
- uses: codfish/semantic-release-action@upgrade
68
+ - name: semantic-release
69
+ uses: codfish/semantic-release-action@more-outputs
76
70
  id: semantic
77
71
  with:
78
72
  branches: |
@@ -126,6 +120,26 @@ jobs:
126
120
  GITHUB_TOKEN: ${{ secrets.SEMANTIC_GH_TOKEN }}
127
121
  NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
128
122
 
123
+ - name: Dump semantic outputs
124
+ if: steps.semantic-dry-run.outputs.new-release-published == 'true'
125
+ run: |
126
+ echo "Outputs:\n"
127
+ echo "$SEMANTIC_OUTPUTS"
128
+ echo "\n-----\n\nEnvironment Variables:\n"
129
+ echo "NEW_RELEASE_PUBLISHED: $NEW_RELEASE_PUBLISHED"
130
+ echo "RELEASE_VERSION: $RELEASE_VERSION"
131
+ echo "RELEASE_MAJOR: $RELEASE_MAJOR"
132
+ echo "RELEASE_MINOR: $RELEASE_MINOR"
133
+ echo "RELEASE_PATCH: $RELEASE_PATCH"
134
+ echo "RELEASE_NOTES: $RELEASE_NOTES"
135
+ echo "RELEASE_TYPE: $RELEASE_TYPE"
136
+ echo "RELEASE_CHANNEL: $RELEASE_CHANNEL"
137
+ echo "RELEASE_GIT_HEAD: $RELEASE_GIT_HEAD"
138
+ echo "RELEASE_GIT_TAG: $RELEASE_GIT_TAG"
139
+ echo "RELEASE_NAME: $RELEASE_NAME"
140
+ env:
141
+ SEMANTIC_OUTPUTS: ${{ toJson(steps.semantic-dry-run.outputs) }}
142
+
129
143
  - shell: bash
130
144
  if: steps.semantic.outputs.new-release-published == 'true'
131
145
  run: |
@@ -34,7 +34,9 @@ jobs:
34
34
  id: npm-cache
35
35
  with:
36
36
  path: node_modules
37
- key: ${{ runner.os }}-node_modules-${{ steps.setup-node.outputs.node-version }}-${{ hashFiles('**/package-lock.json') }}
37
+ key:
38
+ ${{ runner.os }}-node_modules-${{ steps.setup-node.outputs.node-version }}-${{
39
+ hashFiles('**/package-lock.json') }}
38
40
 
39
41
  - name: install dependencies
40
42
  if: steps.npm-cache.outputs.cache-hit != 'true'
package/Dockerfile CHANGED
@@ -10,7 +10,7 @@ RUN npm ci
10
10
  COPY ./src ./src
11
11
  COPY ./public ./public
12
12
 
13
- ENV RELEASE_VERSION=4.9.1
13
+ ENV RELEASE_VERSION=4.15.0
14
14
 
15
15
  RUN npm run build
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codfish/actions-playground",
3
- "version": "0.0.0-PR-52--bb9e07b",
3
+ "version": "0.0.0-PR-53--bb10798",
4
4
  "description": "My own testing ground for messing around with GitHub Actions.",
5
5
  "private": false,
6
6
  "publishConfig": {
@@ -34,7 +34,7 @@
34
34
  "devDependencies": {
35
35
  "@commitlint/cli": "^8.2.0",
36
36
  "@commitlint/config-conventional": "^8.2.0",
37
- "cod-scripts": "^0.0.0-PR-194--e725f84",
37
+ "cod-scripts": "^12.0.0",
38
38
  "jsdoc": "^3.6.3",
39
39
  "markdownlint-cli": "^0.18.0"
40
40
  },
@@ -1,3 +1,3 @@
1
- appVersion: 4.9.1
1
+ appVersion: 4.15.0
2
2
  name: actions-playground
3
- version: 4.9.1
3
+ version: 4.15.0
@@ -1,4 +1,4 @@
1
- const reportWebVitals = onPerfEntry => {
1
+ const reportWebVitals = (onPerfEntry) => {
2
2
  if (onPerfEntry && onPerfEntry instanceof Function) {
3
3
  import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
4
4
  getCLS(onPerfEntry);