hassio-supervised-installer/.github/workflows/build-deb-pr.yml
Workflow config file is invalid. Please check your config file: yaml: line 15: could not find expected ':'
2022-12-11 00:58:23 +00:00

22 lines
No EOL
637 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@v3
- name: Build Debian Package in Docker
run: docker run --rm -v $(pwd):/tmp debian:stable-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@v3
with:
name: homeassistant-supervised.deb
path: homeassistant-supervised.deb