first test of build deb
This commit is contained in:
parent
e875db60a1
commit
b02922641b
1 changed files with 19 additions and 0 deletions
19
.github/workflows/build-deb.yml
vendored
Normal file
19
.github/workflows/build-deb.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
|
||||||
|
name: Build Deb Package
|
||||||
|
|
||||||
|
# yamllint disable-line rule:truthy
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
release:
|
||||||
|
types: ["published"]
|
||||||
|
jobs:
|
||||||
|
build-deb-package:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Build Debian package
|
||||||
|
uses: dawidd6/action-debian-package@v1
|
||||||
|
with:
|
||||||
|
# Optional, relative to workspace directory
|
||||||
|
source_directory: homeassistant-supervised
|
Loading…
Reference in a new issue