mirror of
https://github.com/hazemKrimi/touch-programming.git
synced 2026-05-01 18:20:26 +00:00
48 lines
1.0 KiB
YAML
48 lines
1.0 KiB
YAML
name: Deployment to VPS
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 18
|
|
|
|
- name: Build client
|
|
run: |
|
|
cd client
|
|
npm install
|
|
npm run build
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: '1.23.x'
|
|
|
|
- name: Build server
|
|
run: |
|
|
cd server
|
|
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o executable
|
|
|
|
- name: Deploy to VPS
|
|
env:
|
|
HOST: hazemkrimi.tech
|
|
USER: deploy
|
|
KEY: ${{ secrets.DEPLOY_SSH_KEY }}
|
|
run: |
|
|
mkdir -p ~/.ssh
|
|
echo "$DEPLOY_SSH_KEY" > ~/.ssh/id_vps_deploy
|
|
chmod 600 ~/.ssh/id_vps_deploy
|
|
scp -r client/build $USER@$HOST:/var/www/touch-programming.hazemkrimi.tech/public
|
|
scp -r server/executable $USER@$HOST:/var/www/touch-programming.hazemkrimi.tech/api
|