@tarsilla/commit-wizard 1.1.0 → 1.1.2
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/package.json
CHANGED
|
@@ -15,6 +15,10 @@ outputs:
|
|
|
15
15
|
description: The URL of the page
|
|
16
16
|
value: ${{ steps.deploy.outputs.page_url }}
|
|
17
17
|
runs:
|
|
18
|
+
#permissions:
|
|
19
|
+
# contents: read # to be set in workflow run
|
|
20
|
+
# pages: write # to be set in workflow run
|
|
21
|
+
# id-token: write # to be set in workflow run
|
|
18
22
|
using: composite
|
|
19
23
|
steps:
|
|
20
24
|
- name: Install
|
|
@@ -10,6 +10,10 @@ inputs:
|
|
|
10
10
|
build:
|
|
11
11
|
description: Specifies the command to run after install for the build
|
|
12
12
|
required: true
|
|
13
|
+
outputs:
|
|
14
|
+
page_url:
|
|
15
|
+
description: The URL of the page
|
|
16
|
+
value: ${{ steps.deploy.outputs.page_url }}
|
|
13
17
|
runs:
|
|
14
18
|
using: composite
|
|
15
19
|
steps:
|
|
@@ -18,7 +22,8 @@ runs:
|
|
|
18
22
|
with:
|
|
19
23
|
node-version: 22.x
|
|
20
24
|
registry-url: https://registry.npmjs.org
|
|
21
|
-
-
|
|
25
|
+
- id: deploy
|
|
26
|
+
name: Deploy Storybook to Github Pages
|
|
22
27
|
uses: ./src/github-actions/deploy/github-pages/base
|
|
23
28
|
with:
|
|
24
29
|
path: storybook-static
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
name: NPM Publish
|
|
2
2
|
description: Github action to publish to npm as part of a github workflow for NodeJS projects
|
|
3
3
|
inputs:
|
|
4
|
-
|
|
4
|
+
token:
|
|
5
5
|
required: true
|
|
6
6
|
runs:
|
|
7
|
+
#permissions:
|
|
8
|
+
# contents: write # to be set in workflow run
|
|
9
|
+
# id-token: write # to be set in workflow run
|
|
7
10
|
using: composite
|
|
8
11
|
steps:
|
|
9
12
|
- name: Setup Node.js
|
|
@@ -22,4 +25,4 @@ runs:
|
|
|
22
25
|
run: npx semantic-release
|
|
23
26
|
env:
|
|
24
27
|
GITHUB_TOKEN: ${{ github.token }}
|
|
25
|
-
NPM_TOKEN: ${{ inputs.
|
|
28
|
+
NPM_TOKEN: ${{ inputs.token }}
|