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 22672bc commit c755f5dCopy full SHA for c755f5d
.github/workflows/build.yml
@@ -15,7 +15,11 @@ jobs:
15
build:
16
name: Build
17
runs-on: ubuntu-latest
18
- steps:
+ permissions:
19
+ contents: write
20
+ pull-requests: write
21
+ id-token: write
22
+ steps:
23
- uses: actions/checkout@v3
24
with:
25
fetch-depth: 0
@@ -24,6 +28,8 @@ jobs:
28
- run: pnpm build
29
- run: pnpm circular
26
30
- run: pnpm docgen
31
+ - name: Upgrade npm for OIDC support
32
+ run: npm install -g npm@latest
27
33
- name: Create Release Pull Request or Publish
34
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
35
id: changesets
@@ -32,4 +38,3 @@ jobs:
38
publish: pnpm changeset publish
39
env:
40
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments