diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml new file mode 100644 index 0000000..c7af476 --- /dev/null +++ b/.gitea/workflows/deploy.yaml @@ -0,0 +1,19 @@ +name: Deploy Site to Folder + +on: + push: + branches: + - main + +jobs: + deploy: + runs-on: host + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Deploy to Folder + run: | + echo "Copying files..." + cp ./src/* /var/sites/cyper.cc/www/html \ No newline at end of file