From 9fe242362afbcc9a8405929ca443e41439812c0d Mon Sep 17 00:00:00 2001 From: jacobpascual Date: Sun, 11 Jan 2026 04:57:29 +0000 Subject: [PATCH] Add Gitea Actions workflow (from GitHub) --- .gitea/workflows/build.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 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..0f43fb4 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,34 @@ +--- +name: Build package + +on: + push: + branches: ['*'] + pull_request: + branches: ['*'] + + workflow_dispatch: + +jobs: + test-and-build: + runs-on: ubuntu-latest + + steps: + - uses: https://github.com/actions/checkout@v3 + + - name: ShellCheck + uses: ludeeus/action-shellcheck@2.0.0 + env: + SHELLCHECK_OPTS: -e SC1091 + + - name: Build Debian package + uses: jtdor/build-deb-action@v1 + with: + buildpackage-opts: --no-sign --check-command=lintian + extra-build-deps: lintian + + - name: Upload debian package as artifact + uses: https://github.com/actions/upload-artifact@v3 + with: + name: deb + path: debian/artifacts