@codfish/actions-playground 0.0.0-PR-98--99629b1 → 0.0.0-PR-98--06d10d4
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.
|
@@ -25,7 +25,7 @@ jobs:
|
|
|
25
25
|
cancel-in-progress: false
|
|
26
26
|
|
|
27
27
|
steps:
|
|
28
|
-
- uses: actions/checkout@
|
|
28
|
+
- uses: actions/checkout@v6
|
|
29
29
|
with:
|
|
30
30
|
persist-credentials: false
|
|
31
31
|
|
|
@@ -131,6 +131,7 @@ jobs:
|
|
|
131
131
|
]
|
|
132
132
|
env:
|
|
133
133
|
GITHUB_TOKEN: ${{ secrets.SEMANTIC_GH_TOKEN }}
|
|
134
|
+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} # needed cause trusted publishing isnt supported by the action yet
|
|
134
135
|
|
|
135
136
|
- name: Dump semantic outputs
|
|
136
137
|
if: steps.semantic.outputs.new-release-published == 'true'
|
|
@@ -111,6 +111,8 @@ jobs:
|
|
|
111
111
|
- uses: codfish/actions/npm-publish-pr@v3
|
|
112
112
|
with:
|
|
113
113
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
114
|
+
# needed cause trusted publishing is only available to a single workflow and we need it in release.yml
|
|
115
|
+
npm-token: ${{ secrets.NPM_TOKEN }}
|
|
114
116
|
|
|
115
117
|
- name: Calculate build size
|
|
116
118
|
run: |
|
package/.markdownlint.json
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,23 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codfish/actions-playground",
|
|
3
|
-
"version": "0.0.0-PR-98--
|
|
3
|
+
"version": "0.0.0-PR-98--06d10d4",
|
|
4
4
|
"description": "My own testing ground for messing around with GitHub Actions.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
8
8
|
},
|
|
9
|
-
"scripts": {
|
|
10
|
-
"start": "PUBLIC_URL=/ react-scripts start",
|
|
11
|
-
"build": "react-scripts build",
|
|
12
|
-
"build:docs": "jsdoc src -d docs",
|
|
13
|
-
"eject": "react-scripts eject",
|
|
14
|
-
"format": "cod-scripts format",
|
|
15
|
-
"lint": "cod-scripts lint",
|
|
16
|
-
"lint:md": "markdownlint -i node_modules -i dist .",
|
|
17
|
-
"lint:commit": "cod-scripts commitlint",
|
|
18
|
-
"test": "echo \"No tests yet.\"",
|
|
19
|
-
"validate": "cod-scripts validate"
|
|
20
|
-
},
|
|
21
9
|
"repository": {
|
|
22
10
|
"type": "git",
|
|
23
11
|
"url": "git+https://github.com/codfish/actions-playground.git"
|
|
@@ -25,7 +13,6 @@
|
|
|
25
13
|
"keywords": [
|
|
26
14
|
"foobar"
|
|
27
15
|
],
|
|
28
|
-
"packageManager": "pnpm@10.17.1",
|
|
29
16
|
"author": "",
|
|
30
17
|
"license": "MIT",
|
|
31
18
|
"bugs": {
|
|
@@ -96,5 +83,17 @@
|
|
|
96
83
|
"volta": {
|
|
97
84
|
"node": "22.18.0",
|
|
98
85
|
"yarn": "4.10.3"
|
|
86
|
+
},
|
|
87
|
+
"scripts": {
|
|
88
|
+
"start": "PUBLIC_URL=/ react-scripts start",
|
|
89
|
+
"build": "react-scripts build",
|
|
90
|
+
"build:docs": "jsdoc src -d docs",
|
|
91
|
+
"eject": "react-scripts eject",
|
|
92
|
+
"format": "cod-scripts format",
|
|
93
|
+
"lint": "cod-scripts lint",
|
|
94
|
+
"lint:md": "markdownlint -i node_modules -i dist .",
|
|
95
|
+
"lint:commit": "cod-scripts commitlint",
|
|
96
|
+
"test": "echo \"No tests yet.\"",
|
|
97
|
+
"validate": "cod-scripts validate"
|
|
99
98
|
}
|
|
100
|
-
}
|
|
99
|
+
}
|