website/.gitea/workflows/action.yml
fzorb 2c24caf962
Some checks failed
pipeline / deploy-job (push) Failing after 2m37s
Update .gitea/workflows/action.yml
2024-12-24 18:50:35 +02:00

43 lines
1004 B
YAML

name: pipeline
on:
push:
branches:
- main
jobs:
deploy-job:
runs-on: ubuntu-latest
steps:
- name: init env
run: |
sudo apt-get update
sudo apt-get install -y rsync openssh-client hugo git sshpass
- name: init git
run: |
git clone https://git.fzorb.xyz/fzorb/website
cd website
git submodule foreach --recursive git reset --hard
git submodule init
git submodule update --recursive
- name: generate site
run: |
ls -a
cd website
ls -a
hugo
- name: init ssh
run: |
ssh-keyscan -p 22 fzorb.xyz >> ~/.ssh/known_hosts
- name: upload new files
run: |
sshpass -p '${{secrets.PASSWD}}' rsync -avzh website/public/ -e ssh git@fzorb.xyz:/var/www/fzorb.xyz
- name: fix perms
run: |
sshpass -p '${{secrets.PASSWD}}' git@fzorb.xyz "chmod 777 -R /var/www/fzorb.xyz"