@skriptfabrik/elements-cli 0.5.28 → 0.5.30
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/ci.yml +6 -4
- package/Dockerfile +1 -1
- package/package.json +2 -2
package/.github/workflows/ci.yml
CHANGED
|
@@ -16,6 +16,9 @@ jobs:
|
|
|
16
16
|
publish-push:
|
|
17
17
|
name: Publish package and Push Docker images
|
|
18
18
|
runs-on: ubuntu-latest
|
|
19
|
+
permissions:
|
|
20
|
+
contents: read
|
|
21
|
+
id-token: write
|
|
19
22
|
|
|
20
23
|
steps:
|
|
21
24
|
- name: Checkout
|
|
@@ -27,6 +30,7 @@ jobs:
|
|
|
27
30
|
uses: actions/setup-node@v6
|
|
28
31
|
with:
|
|
29
32
|
node-version-file: .node-version
|
|
33
|
+
registry-url: https://registry.npmjs.org
|
|
30
34
|
|
|
31
35
|
- name: Install dependencies
|
|
32
36
|
run: |-
|
|
@@ -48,11 +52,9 @@ jobs:
|
|
|
48
52
|
npm version from-git --no-git-tag-version
|
|
49
53
|
|
|
50
54
|
- name: Publish package
|
|
51
|
-
uses: JS-DevTools/npm-publish@v4
|
|
52
55
|
if: github.ref_type == 'tag'
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
token: ${{ secrets.NPM_TOKEN }}
|
|
56
|
+
run: |-
|
|
57
|
+
npm publish
|
|
56
58
|
|
|
57
59
|
- name: Log in to DockerHub
|
|
58
60
|
uses: docker/login-action@v3
|
package/Dockerfile
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skriptfabrik/elements-cli",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.30",
|
|
4
4
|
"description": "The missing CLI for beautiful, interactive API docs powered by with Stoplight Elements",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"stoplight",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@stoplight/elements": "9.0.
|
|
24
|
+
"@stoplight/elements": "9.0.15",
|
|
25
25
|
"chalk": "^5.2.0",
|
|
26
26
|
"chokidar": "^5.0.0",
|
|
27
27
|
"cors-anywhere": "~0.4.4",
|