Skip to content

Commit

Permalink
Test with deb package
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielfedel committed Feb 26, 2024
1 parent cbd5988 commit 037138a
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/debpackage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Create the DEB

permissions:
contents: write

on:
on:
push:
paths:
- "mrmShared/linux/**"
pull_request:
paths:
- "mrmShared/linux/**"
workflow_dispatch:

jobs:
Create_Packages:
name: Create Package
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
path: "REPO"

- name: Build pakckage
run: |
cd mrmShared/linux
dpkg-buildpackage

- name: Release the Package
uses: softprops/action-gh-release@v1
with:
files: mrf-dkms_3-0_all.deb

0 comments on commit 037138a

Please sign in to comment.