hassio-supervised-installer/.github/workflows/build-deb-pr.yml
dependabot[bot] 9afc7a625e
Bump actions/checkout from 4.1.3 to 4.1.4 (#362)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.3 to 4.1.4.
- [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.3...v4.1.4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-29 09:04:01 +02:00

23 lines
No EOL
661 B
YAML

name: Build Test Deb Package
on:
pull_request:
branches:
- main
jobs:
build-test-deb-package:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.4
- 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: Upload
uses: actions/upload-artifact@v4
with:
name: homeassistant-supervised.deb
path: homeassistant-supervised.deb