From 13b2f08e407cc669e4bba7e82255288be8addb49 Mon Sep 17 00:00:00 2001 From: Cyper Date: Sat, 23 Aug 2025 14:04:46 -0400 Subject: [PATCH] feat: Added automated deployment --- .gitea/workflows/deploy.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitea/workflows/deploy.yaml 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