Skip to content

Commit

Permalink
Add debian build github action.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamazi committed May 29, 2024
1 parent 5b125be commit b9a7b9d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Release

on:
push:
tags: "v*.*.*"

jobs:
build-debs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build debian package
uses: jtdor/build-deb-action@v1
with:
buildpackage-opts: --build=binary --no-sign
- name: Create gitHub release
uses: softprops/action-gh-release@v2
with:
files: debian/artifacts/*.deb

0 comments on commit b9a7b9d

Please sign in to comment.