From 0323aee838a1a0ea2802722cfad6d193be2818d4 Mon Sep 17 00:00:00 2001 From: jbond Date: Thu, 10 Aug 2023 19:58:49 +0200 Subject: [PATCH] Add action to auto build debian package closes #1111 --- .github/workflows/debian.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/debian.yml diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml new file mode 100644 index 00000000..7b44b328 --- /dev/null +++ b/.github/workflows/debian.yml @@ -0,0 +1,23 @@ +on: + push: + tags: + - 'v*' + +jobs: + build-debs: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: jtdor/build-deb-action@v1 + env: + DEB_BUILD_OPTIONS: noautodbgsym + with: + buildpackage-opts: --build=binary --no-sign + extra-build-deps: git + - uses: "marvinpinto/action-automatic-releases@latest" + with: + repo_token: "${{ secrets.GITHUB_TOKEN }}" + prerelease: false + files: | + LICENSE + debian/artifacts/*.deb