-
Notifications
You must be signed in to change notification settings - Fork 2
48 lines (39 loc) · 1.14 KB
/
build.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
name: Build and Deploy
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: "read"
id-token: "write"
steps:
- uses: "actions/checkout@v4"
- uses: actions/setup-node@v4
with:
node-version: "20"
registry-url: "https://registry.npmjs.org"
- uses: pnpm/action-setup@v2
with:
version: "9.12.3"
- run: pnpm install
- run: pnpm build
- run: |
if [[ -n "$(git status --porcelain src/)" ]]; then
echo "Found changes in src/ directory after build"
exit 1
fi
- if: github.ref == 'refs/heads/main'
uses: "google-github-actions/auth@v2"
with:
project_id: c7e-prod
workload_identity_provider: "projects/276773611885/locations/global/workloadIdentityPools/github/providers/presets-repo"
- if: github.ref == 'refs/heads/main'
uses: "google-github-actions/upload-cloud-storage@v2"
with:
path: "configs"
destination: "c7e-prod-static/presets"
parent: false