Skip to content

Merge pull request #38 from plantinformatics/develop #13

Merge pull request #38 from plantinformatics/develop

Merge pull request #38 from plantinformatics/develop #13

name: Automated Deploy - documentation website
on:
push:
branches:
- main # Trigger on pushes to master branch
workflow_dispatch: # Allow manual triggering
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install SSH key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.EC2_SSH_PRIVATE_KEY }}
known_hosts: ${{ secrets.KNOWN_HOSTS }}
- name: Pull latest changes
env:
HOST: ${{ secrets.EC2_HOST }}
USER: ${{ secrets.EC2_USER }}
run: |
ssh $USER@$HOST <<EOF
cd pretzel-documentation-website-test/
git fetch
git pull
EOF