-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (53 loc) · 1.46 KB
/
pr.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
48
49
50
51
52
53
54
name: Check pull request
on:
push:
branches-ignore:
- main
env:
NAME: console-frontend
IMAGE_REPOSITORY: oci://europe-north1-docker.pkg.dev/nais-io/nais
jobs:
check:
name: Lint and check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: npm install
run: |-
npm install --ci
npx svelte-kit sync
- name: npm run check
run: npm run check
- name: npm run lint
run: npm run lint
- name: npm run build
run: npm run build
- name: helm lint
run: helm lint --strict ./charts
build_push:
permissions:
contents: 'read'
id-token: 'write'
name: Build and push
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: nais/platform-build-push-sign@main
id: build-push-sign
with:
name: ${{ env.NAME }}
google_service_account: gh-${{ env.NAME }}
workload_identity_provider: ${{ secrets.NAIS_IO_WORKLOAD_IDENTITY_PROVIDER }}
push: true
- uses: azure/setup-helm@v4
name: 'Setup Helm'
with:
version: '3.8.0'
- name: Build Chart
run: |-
sed -i "s/^version: .*/version: ${{ steps.build-push-sign.outputs.version }}/g" charts/Chart.yaml
cat charts/Chart.yaml
helm package charts
- name: Push Chart
run: |-
helm push ${{ env.NAME }}*.tgz ${{ env.IMAGE_REPOSITORY }}