From 2da0c212ee7f8c207730e971d237697fa94a2824 Mon Sep 17 00:00:00 2001 From: redglow Date: Mon, 22 Jun 2026 08:29:36 +0200 Subject: [PATCH] ci: initial workflow --- .gitea/workflows/cicd.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitea/workflows/cicd.yaml diff --git a/.gitea/workflows/cicd.yaml b/.gitea/workflows/cicd.yaml new file mode 100644 index 0000000..a549a20 --- /dev/null +++ b/.gitea/workflows/cicd.yaml @@ -0,0 +1,14 @@ +name: Build and Deploy +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +on: + workflow_dispatch: + push: + branches: + - main + +jobs: + checkout: + name: Build + steps: + - name: Checkout Source Code + uses: actions/checkout@v4