-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (52 loc) · 1.64 KB
/
deploy.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
name: Deploy
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: 'read'
id-token: 'write'
concurrency: "prod"
steps:
- uses: 'actions/[email protected]'
- id: 'auth'
name: 'Authenticate to Google Cloud'
uses: 'google-github-actions/[email protected]'
with:
workload_identity_provider: ${{ vars.GCP_WORKLOAD_IDENTITY_PROVIDER }}
service_account: ${{ vars.GCP_SERVICE_ACCOUNT }}
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python
uses: actions/[email protected]
with:
python-version-file: "pyproject.toml"
- name: Install
run: uv sync
- name: Test
run: uv run pytest -v
- name: Generate Requirements
run: ./scripts/generate_requirements.sh
- id: 'deploy'
uses: 'google-github-actions/[email protected]'
with:
name: "update2"
runtime: 'python312'
environment: GEN_2
max_instance_count: 2
entry_point: "update2"
# TODO put these all in github or all in gcp
environment_variables: |-
DEVICE_ID=${{ vars.DEVICE_ID}}
secrets: |-
ASTRAL_LOCATION=projects/${{ steps.auth.outputs.project_id}}/secrets/ASTRAL_LOCATION/versions/latest
SUREPY_TOKEN=projects/${{ steps.auth.outputs.project_id}}/secrets/SUREPY_AUTH_TOKEN/versions/latest
- name: Trigger deployed function
run:
curl ${{ steps.deploy.outputs.url }} --fail-with-body