Skip to content

Merge pull request #18 from HIGHFIVE-SW/apirequest #1

Merge pull request #18 from HIGHFIVE-SW/apirequest

Merge pull request #18 from HIGHFIVE-SW/apirequest #1

Workflow file for this run

name: Deploy with GitHub Actions
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup SSH Key
run: |
echo "${{ secrets.SSH_PRIVATE_KEY }}" > id_rsa.pem
chmod 600 id_rsa.pem
ssh -i id_rsa.pem -o StrictHostKeyChecking=no [email protected] -p 50735 "cd HIGHFIVE-AI/ && git pull origin main && ./deploy_script.sh"