parent
0e185d172a
commit
25170c309b
1 changed files with 23 additions and 0 deletions
23
.forgejo/workflows/cicd.yaml
Normal file
23
.forgejo/workflows/cicd.yaml
Normal 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/
|
Loading…
Reference in a new issue