add forgejo cicd
Some checks failed
/ build (push) Failing after 33s

This commit is contained in:
Collin Lefeber 2024-11-25 16:51:45 -05:00
parent 0e185d172a
commit 25170c309b

View file

@ -0,0 +1,23 @@
---
env:
DEPLOY_REMOTE: www-cfebscom@tennishtz2.slowdiiv.com
on: [push]
jobs:
build:
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
runs-on: docker
container:
image: forge.cfebs.com/cfebs/node-util:20
steps:
- name: checkout
uses: https://code.forgejo.org/actions/checkout@v4
- name: build
run: python3 ./main.py
- name: deploy
run: |
eval $(ssh-agent -s)
ssh-add <(echo "${{ secrets.FORGE_DEPLOY_PRIVATE_KEY }}")
rsync -r -v --rsh="ssh -o StrictHostKeyChecking=no" -r ./public/ $DEPLOY_REMOTE:/home/www-cfebscom/public/