mirror of
https://github.com/Kyren223/website.git
synced 2026-01-08 14:03:20 +00:00
34 lines
671 B
YAML
34 lines
671 B
YAML
name: Deploy Astro app to server
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "23"
|
|
|
|
- name: Install dependencies
|
|
run: npm install
|
|
|
|
- name: Build the app
|
|
run: npm run build
|
|
|
|
- name: Deploy to server
|
|
uses: appleboy/scp-action@v0.1.7
|
|
with:
|
|
host: 185.170.113.195
|
|
username: website
|
|
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
|
source: "dist/*"
|
|
target: "/srv/website"
|