From cbfd0e4ed943c9ce5a8e304d300b5d89c3740ac6 Mon Sep 17 00:00:00 2001 From: Jay Date: Fri, 22 Aug 2025 14:38:22 -0400 Subject: [PATCH] Add workflows. --- .gitea/workflows/build.yml | 16 ++++++++++++++++ .gitea/workflows/release.yml | 0 2 files changed, 16 insertions(+) create mode 100644 .gitea/workflows/build.yml create mode 100644 .gitea/workflows/release.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..a9c64b3 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,16 @@ +name: Test and Build + +on: + push: + branches: + main + +jobs: + test-and-build: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + ssh-key: '${{ secrets.SSH_PRIVATE_KEY }}' + ssh-known-hosts: '${{ secrets.SSH_KNOWN_HOST }}' diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml new file mode 100644 index 0000000..e69de29