Skip to content

Commit 0323aee

Browse files
committed
Add action to auto build debian package
closes #1111
1 parent ae5fcc7 commit 0323aee

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/debian.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
on:
2+
push:
3+
tags:
4+
- 'v*'
5+
6+
jobs:
7+
build-debs:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
- uses: jtdor/build-deb-action@v1
12+
env:
13+
DEB_BUILD_OPTIONS: noautodbgsym
14+
with:
15+
buildpackage-opts: --build=binary --no-sign
16+
extra-build-deps: git
17+
- uses: "marvinpinto/action-automatic-releases@latest"
18+
with:
19+
repo_token: "${{ secrets.GITHUB_TOKEN }}"
20+
prerelease: false
21+
files: |
22+
LICENSE
23+
debian/artifacts/*.deb

0 commit comments

Comments
 (0)