File tree 5 files changed +83
-15
lines changed
5 files changed +83
-15
lines changed Original file line number Diff line number Diff line change 1
- name : Build and deploy XP archive (dev)
1
+ name : Build and deploy XP archive
2
2
on :
3
- workflow_dispatch :
4
- push :
5
- branches :
6
- - master
7
- paths :
8
- - package*.json
9
- - xp-archive/**/*
10
- - common/**/*
3
+ workflow_call :
4
+ inputs :
5
+ naisEnv :
6
+ required : true
7
+ type : string
8
+ VITE_APP_ORIGIN :
9
+ required : true
10
+ type : string
11
+ XP_ORIGIN :
12
+ required : true
13
+ type : string
14
+ HTML_RENDER_API :
15
+ required : true
16
+ type : string
17
+ secrets :
18
+ READER_TOKEN :
19
+ required : true
20
+ NAIS_WORKLOAD_IDENTITY_PROVIDER :
21
+ required : true
11
22
12
23
jobs :
13
24
build-and-deploy :
@@ -35,11 +46,11 @@ jobs:
35
46
run : |
36
47
cat > .env <<EOF
37
48
NODE_ENV=production
38
- VITE_APP_ORIGIN=https://cms-arkiv.ansatt.dev.nav.no
39
49
APP_PORT=3499
40
50
APP_BASEPATH=/xp
41
- XP_ORIGIN=https://www.dev.nav.no
42
- HTML_RENDER_API=http://nav-enonicxp-frontend-dev1/render-from-props
51
+ VITE_APP_ORIGIN=${{ inputs.VITE_APP_ORIGIN }}
52
+ XP_ORIGIN=${{ inputs.XP_ORIGIN }}
53
+ HTML_RENDER_API=${{ inputs.HTML_RENDER_API }}
43
54
EOF
44
55
- name : Build application
45
56
run : npm run build
55
66
- name : Deploy application
56
67
uses : nais/deploy/actions/deploy@v2
57
68
env :
58
- CLUSTER : dev -gcp
69
+ CLUSTER : ${{ inputs.naisEnv }} -gcp
59
70
RESOURCE : xp-archive/.nais/config.yml
60
71
VAR : image=${{ steps.docker-push.outputs.image }}
61
- VARS : xp-archive/.nais/vars/dev .yml
72
+ VARS : xp-archive/.nais/vars/${{ inputs.naisEnv }} .yml
Original file line number Diff line number Diff line change
1
+ name : Build and deploy XP archive to dev
2
+ on :
3
+ workflow_dispatch :
4
+ push :
5
+ branches :
6
+ - master
7
+ paths :
8
+ - package*.json
9
+ - xp-archive/**/*
10
+ - common/**/*
11
+
12
+ jobs :
13
+ build-and-deploy :
14
+ name : Build and deploy to dev
15
+ permissions :
16
+ contents : " read"
17
+ id-token : " write"
18
+ uses : ./.github/workflows/.xp-archive-deploy.yml
19
+ with :
20
+ naisEnv : dev
21
+ VITE_APP_ORIGIN : https://cms-arkiv.ansatt.dev.nav.no
22
+ XP_ORIGIN : https://www.dev.nav.no
23
+ HTML_RENDER_API : http://nav-enonicxp-frontend-dev1/render-from-props
24
+ secrets :
25
+ READER_TOKEN : ${{ secrets.READER_TOKEN }}
26
+ NAIS_WORKLOAD_IDENTITY_PROVIDER : ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }}
Original file line number Diff line number Diff line change
1
+ name : Build and deploy XP archive to prod
2
+ on :
3
+ workflow_dispatch :
4
+ push :
5
+ branches :
6
+ - master
7
+ paths :
8
+ - package*.json
9
+ - xp-archive/**/*
10
+ - common/**/*
11
+
12
+ jobs :
13
+ build-and-deploy :
14
+ name : Build and deploy to prod
15
+ permissions :
16
+ contents : " read"
17
+ id-token : " write"
18
+ # if: github.event.release.target_commitish == 'master' // TODO: fix for workflow_dispatch
19
+ uses : ./.github/workflows/.xp-archive-deploy.yml
20
+ with :
21
+ naisEnv : prod
22
+ VITE_APP_ORIGIN : https://cms-arkiv.ansatt.nav.no
23
+ XP_ORIGIN : https://www.nav.no
24
+ HTML_RENDER_API : http://nav-enonicxp-frontend/render-from-props
25
+ secrets :
26
+ READER_TOKEN : ${{ secrets.READER_TOKEN }}
27
+ NAIS_WORKLOAD_IDENTITY_PROVIDER : ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }}
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ metadata:
7
7
labels :
8
8
team : personbruker
9
9
spec :
10
- image : {{image}}
10
+ image : {{ image }}
11
11
port : 3499
12
12
ingresses :
13
13
- {{ appOrigin }}/xp
Original file line number Diff line number Diff line change
1
+ appOrigin : https://cms-arkiv.ansatt.nav.no
2
+ xpHost : www.nav.no
3
+ xpFrontendApp : nav-enonicxp-frontend
4
+ secret : nav-enonicxp
You can’t perform that action at this time.
0 commit comments