From e6c9de75f56c1225deb4919cfaed0d8d077ca4a2 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Sun, 21 Jul 2024 17:55:20 +0100 Subject: [PATCH] add runner script --- .gitea/workflows/build.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..53c8172 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,23 @@ +name: gobuild + +on: [push] + +env: + BUILD_TYPE: Release + +jobs: + build: + runs-on: ubuntu-gitea + + steps: + # - uses: actions/checkout@v2 + + - name: Mucking About + run: + uname -a + && lsb_release -a + && whoami + && pwd + && echo $PATH + && git --version + && python --version