File tree Expand file tree Collapse file tree 1 file changed +2
-21
lines changed Expand file tree Collapse file tree 1 file changed +2
-21
lines changed Original file line number Diff line number Diff line change 11
11
# Allows you to run this workflow manually from the Actions tab
12
12
workflow_dispatch :
13
13
14
- # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
15
- permissions :
16
- contents : read
17
- pages : write
18
- id-token : write
19
-
20
- # Allow one concurrent deployment
21
- concurrency :
22
- group : " pages"
23
- cancel-in-progress : true
24
-
25
14
jobs :
26
15
build :
27
16
runs-on : ubuntu-latest
30
19
- uses : actions/setup-node@v4
31
20
with :
32
21
node-version : 20
22
+ registry-url : https://npm.pkg.github.com/
33
23
- name : Build app
34
24
working-directory : ./app
35
25
run : npm ci
39
29
runs-on : ubuntu-latest
40
30
permissions :
41
31
contents : read
32
+ pages : write
42
33
packages : write
43
34
steps :
44
- - name : Checkout
45
- uses : actions/checkout@v4
46
- - name : Set up node
47
- uses : actions/setup-node@v4
48
- with :
49
- node-version : 20
50
- registry-url : https://npm.pkg.github.com/
51
- - name : Build app
52
- working-directory : ./app
53
- run : npm ci
54
35
- name : Set up pages
55
36
uses : actions/configure-pages@v2
56
37
- name : Build artifact
You can’t perform that action at this time.
0 commit comments