From 5ae9e7597a142e06178f1b96d1a14d0b1bef6b76 Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Sun, 15 Dec 2024 19:33:22 +1100 Subject: [PATCH] feat: add build job --- .gitea/workflows/build.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 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..5fb5123 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,29 @@ +name: Build + +on: + pull_request: + workflow_call: + workflow_dispatch: + +jobs: + build: + runs-on: almalinux-8 + container: + image: git.query.consul/unkin/almalinux8-runnerdnd:latest + options: --privileged + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Install uv + run: | + dnf install uv -y + + - name: Build + run: | + make build + + - name: Show Built Items + run: | + find /workspace/unkin/puppetapi/dist -type f