-
Notifications
You must be signed in to change notification settings - Fork 3
47 lines (43 loc) · 1.27 KB
/
cd-deploy-to-dev.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
name: Deploy to dev
on:
workflow_dispatch:
pull_request:
branches:
- master
paths:
- '**.js*'
- '**.ts*'
- package*.json
- Dockerfile
- entrypoint.sh
- .github/workflows/cd-deploy-to-dev.yml
concurrency:
# Ensures that only one workflow task will run at a time. Previous builds, if
# already in process, will get cancelled. Only the latest commit will be allowed
# to run, cancelling any workflows in between
group: ${{ github.workflow }}-${{ github.job }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
uses: ./.github/workflows/sub-build-push-image.yml
with:
environment: development
dockerfile_path: ./Dockerfile
dockerfile_target: runner
app_name: ${{ vars.APP_NAME }}
registry: ${{ vars.GOOGLE_ARTIFACT_REGISTRY }}
secrets: inherit
deploy:
needs: [build]
uses: ./.github/workflows/sub-cloudrun-deploy.yml
with:
environment: development
project_id: ${{ vars.GOOGLE_PROJECT_ID }}
region: ${{ vars.GOOGLE_CLOUD_REGION }}
app_name: ${{ vars.APP_NAME }}
image_digest: ${{ needs.build.outputs.image_digest }}
min_instances: '0'
max_instances: '5'
cpu: '1'
memory: 256Mi
secrets: inherit