We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41a4859 commit aad9d2bCopy full SHA for aad9d2b
.github/workflows/deploy.yml
@@ -71,6 +71,7 @@ jobs:
71
permissions:
72
contents: write # Required for git push and creating tags
73
pull-requests: write # Required for creating pull requests
74
+ id-token: write
75
steps:
76
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
77
with:
@@ -90,6 +91,9 @@ jobs:
90
91
cache: 'yarn'
92
cache-dependency-path: 'yarn.lock'
93
94
+ - name: Install latest npm
95
+ run: npm install -g npm@latest
96
+
97
- name: Install Dependencies
98
run: yarn install --immutable
99
@@ -98,7 +102,6 @@ jobs:
102
103
- name: Setup Publish Config
100
104
run: |
101
- yarn config set npmAuthToken "${{ secrets.NPM_TOKEN }}"
105
git config user.email ${{ secrets.GH_EMAIL }}
106
git config user.name ${{ secrets.GH_USER }}
107
0 commit comments