23 lines
No EOL
670 B
YAML
23 lines
No EOL
670 B
YAML
|
|
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
|
|
# # Optional, value from `debian/changelog` is used if not defined
|
|
# os_distribution: bullseye
|
|
# # Optional, target architecture, defaults to amd64
|
|
# cpu_architecture: all |