website/.gitea/workflows/action.yml
fzorb 88c267c04b
Some checks failed
pipeline / deploy-job (push) Failing after 34s
Update .gitea/workflows/action.yml
2024-09-05 17:26:29 +03:00

47 lines
1.2 KiB
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
- name: init git
run: |
git clone https://git.fzorb.xyz/fzorb/website
cd website
git submodule init
git submodule update --recursive
- name: generate site
run: |
cd /workspace/fzorb/website/website
hugo --config hugo.yaml
- name: init ssh
run: |
mkdir -p ~/.ssh
echo "${{ secrets.PRIVKEY }}" | base64 -d > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
ssh-keyscan -p 69 107.189.28.28 >> ~/.ssh/known_hosts
- name: delete new files so we don't screw up stuff
run: |
ssh -i ~/.ssh/id_rsa -p 69 gitlab@107.189.28.28 "rm -rf /var/www/fzorb.xyz/*"
- name: upload new files
run: |
rsync -avzh yourrepository/public/ -e "ssh -i ~/.ssh/id_rsa -p 69" gitlab@107.189.28.28:/var/www/fzorb.xyz
- name: fix perms
run: |
ssh -i ~/.ssh/id_rsa -p 69 gitlab@107.189.28.28 "chmod 755 -R /var/www/fzorb.xyz"