Build Test Deb Package
This commit is contained in:
parent
cf37577f61
commit
7fa60b5ad0
1 changed files with 19 additions and 0 deletions
19
.github/workflows/build-deb-pr.yml
vendored
Normal file
19
.github/workflows/build-deb-pr.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
name: Build Test Deb Package
|
||||
|
||||
# yamllint disable-line rule:truthy
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
jobs:
|
||||
build-test-deb-package:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- run: chmod 755 homeassistant-supervised/DEBIAN/p*
|
||||
- run: dpkg-deb --build --root-owner-group homeassistant-supervised
|
||||
- name: Upload
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: homeassistant-supervised.deb
|
||||
path: homeassistant-supervised.deb
|
Loading…
Reference in a new issue