35 lines
1.0 KiB
YAML
35 lines
1.0 KiB
YAML
name: Deploy Nexus
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Preflight secrets check
|
|
env:
|
|
H: ${{ secrets.DEPLOY_HOST }}
|
|
U: ${{ secrets.DEPLOY_USER }}
|
|
K: ${{ secrets.DEPLOY_SSH_KEY }}
|
|
run: |
|
|
[ -z "$H" ] || [ -z "$U" ] || [ -z "$K" ] && echo "ERROR: Missing deploy secret. Configure DEPLOY_HOST/DEPLOY_USER/DEPLOY_SSH_KEY in Settings → Actions → Secrets (see issue #1363)" && exit 1
|
|
|
|
- name: Deploy to host via SSH
|
|
uses: appleboy/ssh-action@v1.0.3
|
|
with:
|
|
host: ${{ secrets.DEPLOY_HOST }}
|
|
username: ${{ secrets.DEPLOY_USER }}
|
|
key: ${{ secrets.DEPLOY_SSH_KEY }}
|
|
script: |
|
|
cd ~/the-nexus || git clone http://143.198.27.163:3000/Timmy_Foundation/the-nexus.git ~/the-nexus
|
|
cd ~/the-nexus
|
|
git fetch origin main
|
|
git reset --hard origin/main
|
|
./deploy.sh main
|