yaml bad
Some checks failed
/ build (push) Failing after 35s

This commit is contained in:
gloriousbreak 2025-05-25 23:11:50 -04:00
parent 0c250b77c6
commit 031904f5db
Signed by: gloriousbreak
GPG key ID: 690D1CF8558DC313

View file

@ -10,13 +10,17 @@ jobs:
image: ruby:3.3
steps:
- name: Install node
run: apt update && apt install nodejs -y
- name: Install system dependencies
run: apt update && apt install nodejs rsync -y
- uses: https://code.forgejo.org/actions/checkout@v4
- name: Install dependencies
- name: Install ruby dependencies
run: bundle install
- name: Build site
run: jekyll build --future --config _config.yml
- name: Deploy site
run: |
rsync -e "ssh -oStrictHostKeyChecking=no -i <(echo ${{ secrets.SERVER_SSH_KEY }})" -avz --delete _site/ deploy@${{ secrets.SERVER_NAME }}:/
run: >
rsync
-e "ssh -oStrictHostKeyChecking=no -i <(echo ${{ secrets.SERVER_SSH_KEY }})"
-avz --delete
_site/
deploy@${{ secrets.SERVER_NAME }}:/