We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b92ca54 commit 1056bc2Copy full SHA for 1056bc2
1 file changed
.github/workflows/release.yml
@@ -25,11 +25,15 @@ jobs:
25
node-version: 24
26
cache: "yarn"
27
- run: yarn install --immutable
28
+ - name: Verify npm trusted publishing prerequisites
29
+ run: |
30
+ node --version
31
+ npm --version
32
+ test "$(npm --version | cut -d. -f1)" -ge 11
33
- name: Create Release PR or Publish
34
id: changesets
35
uses: changesets/action@v1
36
with:
37
publish: yarn changeset publish
38
env:
39
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments