We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 26c0532 + 1243aaf commit be5650cCopy full SHA for be5650c
.github/workflows/actions_release.yml
@@ -6,6 +6,11 @@ on:
6
tag:
7
description: "Tag for the release"
8
required: true
9
+ script:
10
+ description: "Specify the build script to run"
11
+ required: false
12
+ type: string
13
+ default: "yarn build"
14
15
permissions:
16
contents: read
@@ -18,4 +23,5 @@ jobs:
18
23
contents: write
19
24
uses: step-security/reusable-workflows/.github/workflows/actions_release.yaml@v1
20
25
with:
21
- tag: "${{ github.event.inputs.tag }}"
26
+ tag: "${{ github.event.inputs.tag }}"
27
+ script: ${{ github.event.inputs.script || 'yarn build' }}
0 commit comments