mirror of
https://github.com/Kyren223/website.git
synced 2025-09-05 22:18:12 +00:00
42 lines
882 B
YAML
42 lines
882 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: easingthemes/ssh-deploy@main
|
|
with:
|
|
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
|
|
ARGS: "-avz --delete"
|
|
SOURCE: "dist/"
|
|
REMOTE_HOST: kyren.codes
|
|
REMOTE_USER: website
|
|
TARGET: "/srv/website"
|
|
SCRIPT_BEFORE: |
|
|
whoami
|
|
ls -al
|
|
SCRIPT_AFTER: |
|
|
whoami
|
|
ls -al
|
|
echo $RSYNC_STDOUT
|