correction last commit #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} | |
SSH_HOST_KEY: ${{ secrets.SSH_HOST_KEY }} | |
SSH_USER_HOST_LOCATION: ${{ secrets.SSH_USER_HOST_LOCATION }} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Prepare Quarto Project | |
run: | | |
docker run -v ${{ github.workspace }}:/app -w /app -u root jcfdsilva/quarto_full:latest /bin/bash -c "python3 ./resources/scripts/deploy.py" | |
- name: Deploy | |
run: | | |
apt-get update && apt-get install -y rsync | |
which ssh-agent || (apt-get update && apt-get install -y openssh-client) | |
mkdir -p ~/.ssh | |
eval $(ssh-agent -s) | |
echo "${SSH_PRIVATE_KEY}" | ssh-add - | |
echo "${SSH_HOST_KEY}" > ~/.ssh/known_hosts | |
ls -la | |
ls -la _site | |
rsync -hrvz --delete _site/* "${SSH_USER_HOST_LOCATION}" |