-
Notifications
You must be signed in to change notification settings - Fork 3
54 lines (51 loc) · 1.39 KB
/
bygg-og-deploy-storybook.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Bygg og deploy storybook
on:
push:
branches:
- 'master'
workflow_dispatch:
jobs:
build:
permissions:
contents: read
id-token: write
name: Bygg og deploy
runs-on: ubuntu-latest
outputs:
image: ${{ steps.docker-build-push.outputs.image }}
steps:
- name: Sjekk ut kode
uses: actions/checkout@v4
- name: Konfigurer Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Frontend npm install
run: npm ci
- name: Frontend - test, lint og build
run: npm run build-storybook
- name: Push docker image to GAR
uses: nais/docker-build-push@v0
id: docker-build-push
with:
team: arbeidsgiver
image_suffix: storybook
identity_provider: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }}
project_id: ${{ vars.NAIS_MANAGEMENT_PROJECT_ID }}
dockerfile: StorybookDockerfile
deploy-dev:
name: Deploy til dev-gcp
runs-on: ubuntu-latest
needs: build
permissions:
contents: read
id-token: write
steps:
- name: Sjekk ut kode
uses: actions/checkout@v4
- name: Deploy til dev-gcp
uses: nais/deploy/actions/deploy@v2
env:
CLUSTER: dev-gcp
RESOURCE: nais/nais-dev-gcp-storybook.yaml
VAR: image=${{ needs.build.outputs.image }}