From 2f3a5a268594ae8642f82c1c0682716f6dabae68 Mon Sep 17 00:00:00 2001 From: Refringe Date: Mon, 8 Apr 2024 09:34:47 -0400 Subject: [PATCH] Inital Pipeline Working on deploy pipeline. --- .gitea/workflows/deploy.yaml | 17 +++++++++++++++++ 1 file changed, 17 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..b8ad65f --- /dev/null +++ b/.gitea/workflows/deploy.yaml @@ -0,0 +1,17 @@ +name: Deploy + +on: + push: + branches: [ main ] + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + path: /workspace/SPT-AKI/DB-Website + - name: List Files + run: ls -lah /workspace/SPT-AKI/DB-Website + shell: bash