From 0da64ceef4730b32a1665d686e8500d8e5684c00 Mon Sep 17 00:00:00 2001 From: Kellen Renshaw Date: Mon, 22 Jul 2024 13:35:10 -0700 Subject: [PATCH] Initial draft of build and publish workflow Signed-off-by: Kellen Renshaw --- .gitea/workflows/build.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..7c14c37 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,22 @@ +name: Build and Publish +run-name: ${{ gitea.actor }} initiated build. +on: + push: + branches: + - 'main' + +jobs: + build-wheel: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: https://git.bluequartz.xyz/actions/checkout@v4 + + - name: Install build-deps + run: apt-get build-dep . + + - name: Build Package + run: debuild -us -uc -tc -b + + - name: Publish Package to Deb repo + run: ls -lahR