We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 812c21f commit 428eaa2Copy full SHA for 428eaa2
.github/workflows/actions_release.yml
@@ -6,7 +6,11 @@ on:
6
tag:
7
description: "Tag for the release"
8
required: true
9
-
+ script:
10
+ description: "Script to run for the release"
11
+ required: false
12
+ default: "yarn build"
13
+
14
permissions:
15
contents: read
16
@@ -18,4 +22,5 @@ jobs:
18
22
contents: write
19
23
uses: step-security/reusable-workflows/.github/workflows/actions_release.yaml@v1
20
24
with:
21
- tag: "${{ github.event.inputs.tag }}"
25
+ tag: "${{ github.event.inputs.tag }}"
26
+ script: "${{ github.event.inputs.script }}"
0 commit comments