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 cde2411 commit 13aa0c2Copy full SHA for 13aa0c2
build-nextjs-app/README.md
@@ -8,6 +8,10 @@ This action builds and exports a Next.js app
8
9
Node.js version
10
11
+## `fa-token`
12
+
13
+FontAwesome NPM Auth Token
14
15
## `export`
16
17
Whether to export the app or not
build-nextjs-app/action.yaml
@@ -6,6 +6,10 @@ inputs:
6
description: 'Node.js version'
7
required: false
default: 18
+ fa-token:
+ description: 'FontAwesome NPM Auth Token (optional)'
+ required: false
+ default: ''
export:
description: 'Whether to export the app as a static site or not'
@@ -22,6 +26,8 @@ runs:
22
26
23
27
- name: Install dependencies
24
28
shell: bash
29
+ env:
30
+ FONTAWESOME_NPM_AUTH_TOKEN: ${{ inputs.fa-token }}
25
31
run: npm ci
32
33
- name: Cache
0 commit comments