From 798e1a11c1ae07632887a1bbfbc0e963e204f813 Mon Sep 17 00:00:00 2001 From: Bel LaPointe <153096461+breel-render@users.noreply.github.com> Date: Sun, 25 May 2025 12:13:04 -0600 Subject: [PATCH] stub action --- .gitea/workflows/cicd.yaml | 21 +++++++++++++++++++++ build.sh | 3 +++ 2 files changed, 24 insertions(+) create mode 100644 .gitea/workflows/cicd.yaml create mode 100644 build.sh diff --git a/.gitea/workflows/cicd.yaml b/.gitea/workflows/cicd.yaml new file mode 100644 index 0000000..6ddc735 --- /dev/null +++ b/.gitea/workflows/cicd.yaml @@ -0,0 +1,21 @@ +name: cicd +on: + push: + branches: + - main + paths: + - 'cmd/**' + - 'src/**' + schedule: + - cron: '0 0 * * *' + +jobs: + ci: + name: ci + runs-on: dind + steps: + - name: checkout + uses: actions/checkout@v3 + - name: ci + run: | + bash ./build.sh diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..809da30 --- /dev/null +++ b/build.sh @@ -0,0 +1,3 @@ +#! /bin/bash + +exit 0