![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
25 lines
No EOL
712 B
YAML
25 lines
No EOL
712 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
|
|
uses: actions/checkout@v4.1.2
|
|
- name: Build Debian Package in Docker
|
|
run: |
|
|
docker run --rm -v $(pwd):/tmp debian:bullseye-slim bash -c \
|
|
"cd /tmp \
|
|
&& chmod 555 homeassistant-supervised/DEBIAN/p* \
|
|
&& dpkg-deb --build --root-owner-group homeassistant-supervised"
|
|
- name: Release
|
|
uses: softprops/action-gh-release@v2
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
with:
|
|
files: homeassistant-supervised.deb |