Skip to content

Commit c86c374

Browse files
Merge pull request #144 from step-security/Raj-StepSecurity-patch-1
fix: Update actions_release.yaml
2 parents da67c9e + f42d506 commit c86c374

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/actions_release.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ on:
99
script:
1010
description: "Specify script to execute"
1111
required: false
12-
default: "yarn build"
12+
default: "yarn run all"
13+
yarn_version:
14+
required: false
15+
type: string
16+
default: "3.6.3"
1317

1418
permissions:
1519
contents: read
@@ -23,4 +27,5 @@ jobs:
2327
uses: step-security/reusable-workflows/.github/workflows/actions_release.yaml@v1
2428
with:
2529
tag: "${{ github.event.inputs.tag }}"
26-
script: ${{ github.event.inputs.script || 'yarn build' }}
30+
script: ${{ github.event.inputs.script || 'yarn run all' }}
31+
yarn_version: ${{ github.event.inputs.yarn_version || '3.6.3' }}

.github/workflows/audit_package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
script:
1515
description: "Specify script to execute"
1616
required: false
17-
default: "yarn build"
17+
default: "yarn run all"
1818
yarn_version:
1919
required: false
2020
type: string
@@ -29,11 +29,11 @@ jobs:
2929
with:
3030
base_branch: ${{ github.event.inputs.base_branch || 'main' }}
3131
package_manager: "yarn"
32-
script: ${{ github.event.inputs.script || 'yarn build' }}
32+
script: ${{ github.event.inputs.script || 'yarn run all' }}
3333
yarn_version: '3.6.3'
3434

3535
permissions:
3636
contents: write
3737
pull-requests: write
3838
packages: read
39-
issues: write
39+
issues: write

0 commit comments

Comments
 (0)