We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 146c78b commit bf6ef3cCopy full SHA for bf6ef3c
1 file changed
.github/workflows/main.yml
@@ -7,10 +7,16 @@ name: Deploy Extension
7
jobs:
8
deploy:
9
runs-on: ubuntu-latest
10
+ permissions:
11
+ contents: write # to be able to publish a GitHub release
12
+ issues: write # to be able to comment on released issues
13
+ pull-requests: write # to be able to comment on released pull requests
14
+ id-token: write # to enable use of OIDC for npm provenance
15
steps:
16
- uses: actions/checkout@v4
17
with:
18
fetch-depth: 0
19
+ persist-credentials: false
20
- run: npm run install:all:ci
21
- name: Release
22
env:
0 commit comments