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 520b2f7 commit 6277209Copy full SHA for 6277209
2 files changed
.github/workflows/publish.yml
@@ -7,10 +7,13 @@ on:
7
8
jobs:
9
publish:
10
+ # prevents this action from running on forks
11
+ if: github.repository == 'vitejs/launch-editor'
12
runs-on: ubuntu-latest
13
permissions:
14
contents: read
15
id-token: write
16
+ environment: Release
17
18
steps:
19
- name: Checkout repository
@@ -31,6 +34,9 @@ jobs:
31
34
# disable cache, to avoid cache poisoning (https://docs.zizmor.sh/audits/#cache-poisoning)
32
35
package-manager-cache: false
33
36
37
+ - name: Disallow installation scripts
38
+ run: yq '.allowBuilds[]=false' -i pnpm-workspace.yaml
39
+
40
- name: Install dependencies
41
run: pnpm install --frozen-lockfile
42
pnpm-workspace.yaml
@@ -1,2 +1,4 @@
1
packages:
2
- 'packages/*'
3
+allowBuilds:
4
+ yorkie: true
0 commit comments