Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(feat): add workflow #224

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Deploy Research Website

on:
push:
branches:
- main

jobs:
deploy:
environment:
name: production
url: ${{ secrets.SITE_URL }}
concurrency:
group: production
cancel-in-progress: false
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3
losndu marked this conversation as resolved.
Show resolved Hide resolved

- name: Deploy to VPS
uses: appleboy/ssh-action@v1
with:
host: ${{ secrets.VPS_HOST }}
username: ${{ secrets.VPS_USER }}
key: ${{ secrets.VPS_SSH_KEY }}
timeout: 30s
script: |
if [ ! -f ~/deploy.sh ]; then
echo "Error: deploy.sh not found"
exit 1
fi
chmod +x ~/deploy.sh
~/deploy.sh || {
echo "Deployment failed"
exit 1
}
Loading