Skip to content

Commit

Permalink
Merge pull request #1141 from b4ldr/1111_debian_action
Browse files Browse the repository at this point in the history
Add action to auto build debian package
  • Loading branch information
massimocandela authored Sep 2, 2023
2 parents 9bfcb62 + 0323aee commit 7c0efcd
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/debian.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 7c0efcd

Please sign in to comment.