soaos.dev/.gitea/workflows/deploy.yaml

21 lines
617 B
YAML

name: Deploying Static Site
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Build:
container: alpine:latest
steps:
- run: apk add zola nodejs git
- name: Check out repository code
uses: actions/checkout@v4
- run: zola build
- name: Write SSH keys
run: |
install -m 600 -D /dev/null ~/.ssh/id_rsa
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
ssh-keyscan -H soaos.dev > ~/.ssh/known_hosts
- name: Copy built site to server
run: scp -sr public git@soaos.dev:/var/www/soaos.dev