-
Notifications
You must be signed in to change notification settings - Fork 246
45 lines (44 loc) · 1.53 KB
/
porter-debug.yml
File metadata and controls
45 lines (44 loc) · 1.53 KB
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
name: 🚀 Deploy cloud-debug
on:
workflow_dispatch: # Manual trigger fallback
push:
branches:
- cloud/issues-044
- new-context-soniox
- cloud/044-ci-build-audit
- hotfix/cloud-observability
- hotfix/crash-diagnostics
- cloud/062-mongodb-audit
- hotfix/graceful-shutdown
- hotfix/remove-forced-gc-add-livez
paths:
- "cloud/**"
- ".github/workflows/porter-debug.yml"
jobs:
porter-deploy:
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set Github tag
id: vars
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Setup porter
uses: porter-dev/setup-porter@v0.1.0
- name: Deploy stack
timeout-minutes: 30
run: exec porter apply -f ./cloud/porter.yaml
env:
PORTER_APP_NAME: cloud-debug
PORTER_NAMESPACE: debug
NODE_ENV: debug
CLOUD_PUBLIC_HOST_NAME: debug.augmentos.cloud
CLOUD_LOCAL_HOST_NAME: cloud-debug-cloud.default.svc.cluster.local:80
PORTER_CLUSTER: "4689"
PORTER_DEPLOYMENT_TARGET_ID: 4a24a192-04c8-421f-8fc2-22db1714fdc0
PORTER_HOST: https://dashboard.porter.run
PORTER_PR_NUMBER: ${{ github.event.number }}
PORTER_PROJECT: "15081"
PORTER_REPO_NAME: ${{ github.event.repository.name }}
PORTER_TAG: ${{ steps.vars.outputs.sha_short }}
PORTER_TOKEN: ${{ secrets.PORTER_APP_15081_4689 }}