@tarsilla/commit-wizard 1.1.1 → 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
|
@@ -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
|