generated from CDCgov/template
-
Notifications
You must be signed in to change notification settings - Fork 0
79 lines (70 loc) · 2.62 KB
/
deployment.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Deployment
on:
workflow_dispatch:
push:
branches:
- main
permissions:
id-token: write
jobs:
deploy:
name: Deploy phinvads-fhir
runs-on: ubuntu-latest
environment: main
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.23.0"
- name: Azure CLI Login
uses: azure/login@v2
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
- name: Allow GitHub Runner IP
run: |
set -eu
agentIP=$(curl -s https://api.ipify.org/)
az network nsg rule create \
--resource-group phinvads-fhir \
--nsg-name phinvads-fhir-nsg \
--name AllowSSHFromGitHubActions \
--priority 200 \
--direction Inbound \
--access Allow \
--protocol Tcp \
--destination-port-ranges 22 \
--source-address-prefixes $agentIP \
--destination-address-prefixes '*' \
--description "Allow SSH from GitHub Actions"
sleep 3
- name: Write SSH key to file
env:
AZURE_VM_SSH_KEY: ${{ secrets.AZURE_VM_SSH_KEY }}
run: |
install -m 600 -D /dev/null ~/.ssh/phinvads-fhir
echo "${{ secrets.AZURE_VM_SSH_KEY }}" > ~/.ssh/phinvads-fhir
echo "IdentityFile /home/runner/.ssh/phinvads-fhir" >> ~/.ssh/config
- name: Build phinvads-fhir
run: |
go install github.com/a-h/templ/cmd/templ@latest
templ generate
go build -o phinvads-fhir ./cmd/phinvads-fhir
- name: Deploy phinvads-fhir to VM
env:
AZURE_VM_IP: ${{ secrets.AZURE_VM_IP }}
run: |
ssh -o StrictHostKeyChecking=accept-new azureuser@${AZURE_VM_IP} "sudo systemctl stop phinvads-fhir"
scp ./phinvads-fhir azureuser@${AZURE_VM_IP}:/home/azureuser/phinvads-fhir
scp ./remote/production/phinvads-fhir.service azureuser@${AZURE_VM_IP}:/home/azureuser/phinvads-fhir.service
ssh azureuser@${AZURE_VM_IP} "sudo mv phinvads-fhir.service /etc/systemd/system/phinvads-fhir.service && sudo systemctl enable phinvads-fhir && sudo systemctl restart phinvads-fhir"
- name: Disallow GitHub Runner IP
if: always()
run: |
set -eu
agentIP=$(curl -s https://api.ipify.org/)
az network nsg rule delete \
--resource-group phinvads-fhir \
--nsg-name phinvads-fhir-nsg \
--name AllowSSHFromGitHubActions