@codfish/actions-playground 0.0.0-PR-49--11992af → 0.0.0-PR-53--8f9b2a0

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.
@@ -10,11 +10,6 @@ on:
10
10
  - 'next-major'
11
11
  - '+([0-9])?(.{+([0-9]),x}).x'
12
12
 
13
- permissions:
14
- id-token: write
15
- contents: write
16
- issues: write
17
-
18
13
  jobs:
19
14
  release:
20
15
  runs-on: ubuntu-latest
@@ -54,7 +49,7 @@ jobs:
54
49
  run: docker build -t codfish/actions-playground:latest .
55
50
 
56
51
  - name: semantic release dry run
57
- uses: docker://ghcr.io/codfish/semantic-release-action:v2
52
+ uses: codfish/semantic-release-action@v2
58
53
  id: semantic-dry-run
59
54
  with:
60
55
  dry_run: true
@@ -70,14 +65,8 @@ jobs:
70
65
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
71
66
  NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
72
67
 
73
- - name: Dump semantic outputs
74
- if: steps.semantic-dry-run.outputs.new-release-published == 'true'
75
- run: echo "$SEMANTIC_OUTPUTS"
76
- env:
77
- SEMANTIC_OUTPUTS: ${{ toJson(steps.semantic-dry-run.outputs) }}
78
-
79
- - name: semantic release
80
- uses: docker://ghcr.io/codfish/semantic-release-action@sha256:91ea452696d93a34a30aff20b34614b75e8fddc82b598fc8fa57c3ac07e6d6da
68
+ - name: semantic-release
69
+ uses: codfish/semantic-release-action@more-outputs
81
70
  id: semantic
82
71
  with:
83
72
  branches: |
@@ -131,6 +120,26 @@ jobs:
131
120
  GITHUB_TOKEN: ${{ secrets.SEMANTIC_GH_TOKEN }}
132
121
  NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
133
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
+
134
143
  - shell: bash
135
144
  if: steps.semantic.outputs.new-release-published == 'true'
136
145
  run: |
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.7.1
13
+ ENV RELEASE_VERSION=4.15.0
14
14
 
15
15
  RUN npm run build
16
16
 
package/docs/.gitignore CHANGED
@@ -1,3 +1,3 @@
1
1
  *
2
- !.gitignore
3
2
  !robots.txt
3
+ !.gitignore
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codfish/actions-playground",
3
- "version": "0.0.0-PR-49--11992af",
3
+ "version": "0.0.0-PR-53--8f9b2a0",
4
4
  "description": "My own testing ground for messing around with GitHub Actions.",
5
5
  "private": false,
6
6
  "publishConfig": {
@@ -35,6 +35,7 @@
35
35
  "@commitlint/cli": "^8.2.0",
36
36
  "@commitlint/config-conventional": "^8.2.0",
37
37
  "cod-scripts": "^0.0.0-PR-194--e725f84",
38
+ "husky": "^8.0.3",
38
39
  "jsdoc": "^3.6.3",
39
40
  "markdownlint-cli": "^0.18.0"
40
41
  },
@@ -1,3 +1,3 @@
1
- appVersion: 4.7.1
1
+ appVersion: 4.15.0
2
2
  name: actions-playground
3
- version: 4.7.1
3
+ version: 4.15.0