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 6fc227b commit 592bdbeCopy full SHA for 592bdbe
.github/actions/setup/action.yml
@@ -4,6 +4,9 @@ inputs:
4
install:
5
default: 'true'
6
description: Whether or not to run 'pnpm install'
7
+ installArgs:
8
+ default: ''
9
+ description: Additional args to append to "pnpm install"
10
runs:
11
using: composite
12
steps:
@@ -17,4 +20,4 @@ runs:
17
20
- name: Install Dependencies
18
21
if: ${{ inputs.install == 'true' }}
19
22
shell: bash
- run: pnpm install
23
+ run: pnpm install ${{ inputs.installArgs }}
.github/workflows/sync-releases.yml
@@ -22,6 +22,8 @@ jobs:
- uses: actions/checkout@v4
24
- uses: ./.github/actions/setup
25
+ with:
26
+ installArgs: --ignore-scripts
27
- run: pnpm tsx scripts/sync-releases.ts ${{ inputs.package }}
28
env:
29
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments