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 ae49d36 commit 190a912Copy full SHA for 190a912
.github/workflows/build.yml
@@ -23,10 +23,7 @@ jobs:
23
permissions:
24
contents: read
25
steps:
26
- - name: Build
27
- with:
28
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29
- - name: Checkout repo
+ - name: Checkout tools repo
30
uses: actions/checkout@v4
31
- name: Read .nvmrc
32
shell: bash
@@ -36,9 +33,11 @@ jobs:
36
33
uses: actions/setup-node@v4
37
34
with:
38
35
registry-url: https://registry.npmjs.org/
39
- node-version-file: '.nvmrc'
+ node-version-file: ".nvmrc"
40
- name: yarn build
41
42
run: |
43
yarn install --frozen-lockfile
44
- yarn run build
+ yarn run build
+ with:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments