-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (44 loc) · 1.26 KB
/
build_n_deploy_dev.yaml
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
name: Build, push, and deploy app to dev
on: [ workflow_dispatch ]
env:
IMAGE: ghcr.io/navikt/familie-ef-sak-frontend:${{ github.sha }}
permissions:
packages: write
id-token: write
contents: read
jobs:
build:
name: Build and push Docker container
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
cache: yarn
registry-url: "https://npm.pkg.github.com"
- name: Yarn install
run: yarn --prefer-offline --frozen-lockfile
env:
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
- name: Yarn test
run: yarn test
- name: Yarn build
run: yarn build
- name: Build and publish Docker image
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
docker build . -t ${IMAGE}
echo ${GITHUB_TOKEN} | docker login ghcr.io --username ${GITHUB_REPOSITORY} --password-stdin
docker push ${IMAGE}
deploy:
name: Deploy to NAIS
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: nais/deploy/actions/deploy@v2
env:
CLUSTER: dev-gcp
RESOURCE: build_n_deploy/naiserator/dev.yaml