generated from HelloUnspecified/template-graph-gateway
-
Notifications
You must be signed in to change notification settings - Fork 2
71 lines (66 loc) · 1.91 KB
/
ci_onPushMain.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: CI on Push Master
on:
push:
branches:
- master
jobs:
build:
name: Build Gateway API for deploy
uses: thatconference/that-gh-actions/.github/workflows/build-validate-api.yml@main
with:
apiName: gateway
isForDeploy: true
branchName: ${{ github.ref_name }}
nodeVersion: 20
secrets:
SLACK_WEBHOOK_DEV_NOTIFICATIONS: ${{ secrets.SLACK_WEBHOOK_DEV_NOTIFICATIONS }}
deploy:
name: Deploy Gateway API to Google Run
needs: build
uses: thatconference/that-gh-actions/.github/workflows/deploy-api.yml@main
with:
apiName: gateway
runMemory: 256Mi
gcpSecretName: prod-api-gateway-env
secrets:
GCLOUD_AUTH: ${{ secrets.GCLOUD_AUTH }}
GCP_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }}
SLACK_WEBHOOK_DEV_NOTIFICATIONS: ${{ secrets.SLACK_WEBHOOK_DEV_NOTIFICATIONS }}
stellate:
name: Push Stellate rules
runs-on: ubuntu-latest
needs: [build, deploy]
steps:
- name: Download Build Artifact
uses: actions/download-artifact@v4
with:
name: tc-api
path: __build__
- name: Use node.js 16x
uses: actions/setup-node@v4
with:
node-version: 20
- name: Push to Stellate
run: |
npm version
cd __build__
npx stellate version
npx stellate push
env:
STELLATE_TOKEN: ${{ secrets.STELLATE_TOKEN }}
CI: true
HUSKY: 0
notifications:
name: Workflow notifications
needs: [build, deploy]
runs-on: ubuntu-latest
steps:
- name: Slack Notification
uses: 8398a7/action-slack@v3
with:
fields: repo,message,commit,author,eventName,ref,workflow
status: ${{ job.status }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_DEV_NOTIFICATIONS }}
if: always()