blog/.gitea/workflows/main-build.yaml

26 lines
884 B
YAML
Raw Normal View History

2024-11-16 12:11:00 +00:00
name: Build & Deploy
on:
push:
branches:
- main
jobs:
build-or-sth:
runs-on: ubuntu-latest
steps:
2024-11-16 12:19:27 +00:00
- name: Clone repo
run: git clone --recurse-submodules https://git.emin.software/haxala1r/blog.git --depth=1 .
- name: Get hugo
run: |
wget https://github.com/gohugoio/hugo/releases/download/v0.131.0/hugo_extended_0.131.0_linux-amd64.tar.gz -O hugo.tar.gz
tar xzvf hugo.tar.gz
- name: Build
run: ./hugo
- name: Deploy
2024-11-16 12:49:34 +00:00
run: |
echo "${{ secrets.SSH_KEY }}" > ~/.ssh/id
2024-11-16 13:01:32 +00:00
chmod 600 ~/.ssh/id
ssh-keyscan emin.software > ~/.ssh/known_hosts
scp -oUser=${{secrets.SSH_USER}} -i ~/.ssh/id -r public/* emin.software:${{secrets.WEB_PATH}}