-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (33 loc) · 1.08 KB
/
main.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
name: Deploy
on:
push:
branches:
- gcp
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: 'actions/checkout@v4'
- uses: oven-sh/setup-bun@v1
- name: Prepare environment
env:
Dotenv: ${{ secrets.DOTENV_ME }}
run: |
echo "DOTENV_ME=$Dotenv" > .env.me
bun install
bun dotenv-vault pull
bun dotenv-vault pull production
bun scripts/merge-envs.ts
- name: 'Typecheck'
run: |
bunx prisma generate
bun tsc --noEmit
- uses: 'google-github-actions/auth@v1'
with:
credentials_json: '${{ secrets.GOOGLE_CREDENTIALS_JSON }}'
- name: 'Build Docker image'
run: gcloud builds submit --config cloudbuild.yaml .
- name: 'Deploy container'
run: gcloud run deploy api --image europe-west1-docker.pkg.dev/gmail-reminder-api/cloud-run-source-deploy/api:latest --env-vars-file ./.env.json --region europe-west1 --allow-unauthenticated