We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34b39c7 commit 7586ed4Copy full SHA for 7586ed4
1 file changed
.github/workflows/pages.yml
@@ -9,6 +9,7 @@ permissions:
9
contents: read
10
pages: write
11
id-token: write
12
+ packages: read
13
14
concurrency:
15
group: "pages"
@@ -26,6 +27,11 @@ jobs:
26
27
with:
28
node-version: 22
29
30
+ - name: Configure npm for GitHub Packages
31
+ run: |
32
+ echo "@raspberrypifoundation:registry=https://npm.pkg.github.com" >> ~/.npmrc
33
+ echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> ~/.npmrc
34
+
35
- name: Install dependencies
36
working-directory: docs
37
run: npm ci
0 commit comments