-
Notifications
You must be signed in to change notification settings - Fork 8
74 lines (57 loc) · 1.95 KB
/
deploy.yaml
File metadata and controls
74 lines (57 loc) · 1.95 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
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
name: Deploy to Server
on:
push:
branches:
- main
permissions:
packages: write
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23.x'
- name: Install dependencies
run: go get .
- name: Install templ
run: go install github.com/a-h/templ/cmd/templ@latest
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 18 # or 18, or whatever version you need
- name: Install tailwindcss
run: npm install tailwindcss @tailwindcss/cli
- name: Generate Step
run: go generate
- name: Test with the Go CLI
run: go test
- name: Build Step
run: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o zenbin-${GITHUB_SHA}
- name: Connect to Tailnet
uses: tailscale/github-action@v2
with:
oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }}
oauth-secret: ${{ secrets.TS_OAUTH_SECRET }}
tags: tag:ci
- name: Deploy binary using SCP
env:
USER: deploy
HOST: zenbin-vps
DIR: /home/deploy/releases
DEPLOY_SSH_PRIVATE_KEY: ${{ secrets.DEPLOY_SSH_PRIVATE_KEY }}
run: |
mkdir -p ~/.ssh
echo "$DEPLOY_SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
echo "Host *" > ~/.ssh/config
echo " StrictHostKeyChecking no" >> ~/.ssh/config
echo " UserKnownHostsFile /dev/null" >> ~/.ssh/config
# Create directory if it doesn't exist
ssh -i ~/.ssh/id_rsa $USER@$HOST mkdir -p $DIR
# Copy the binary to the releases
scp -i ~/.ssh/id_rsa zenbin-${GITHUB_SHA} $USER@$HOST:$DIR
# Run the deploy.sh script on the server
ssh -i ~/.ssh/id_rsa $USER@$HOST 'bash -s' < ./deploy/deploy.sh $GITHUB_SHA