test new workflow

This commit is contained in:
Kars van Velzen 2024-10-21 17:25:23 +02:00
parent d66dc8ae0d
commit 6b58724fb1

View file

@ -6,15 +6,30 @@ on:
- master
jobs:
build:
Build:
runs-on: ubuntu-latest
steps:
- name: Set up SSH
run: |
- name: Checkout code
uses: actions/checkout@master
- name: Set up Node.js
uses: actions/setup-node@master
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Set up SSH
run: |
mkdir -p ~/.ssh
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
- name: Connect to server
run: |
ssh -o StrictHostKeyChecking=no ${{ secrets.SSH_USERNAME }}@${{ secrets.SSH_HOST }} -p ${{ secrets.SSH_PORT }} "touch octubre/t.txt"
- name: Connect to server
run: |
rsync -avz --delete -e "ssh -i id_rsa -o StrictHostKeyChecking=no -p ${{ secrets.SSH_PORT }}" build/ ${{ secrets.SSH_USERNAME }}@${{ secrets.SSH_HOST }}:octubre/
# ssh -o StrictHostKeyChecking=no ${{ secrets.SSH_USERNAME }}@${{ secrets.SSH_HOST }} -p ${{ secrets.SSH_PORT }} "cd octubre/ && git stash && git remote set-url origin https://github.com/PPDBTeam6-2023-2024/PPDB-Project.git && git pull origin main --rebase"