You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.0 KiB
41 lines
1.0 KiB
name: Publish |
|
|
|
on: |
|
push: |
|
tags: |
|
- '*' |
|
workflow_dispatch: |
|
|
|
jobs: |
|
build: |
|
name: Publish binaries |
|
runs-on: ubuntu-latest |
|
|
|
steps: |
|
- |
|
name: Checkout |
|
uses: actions/checkout@v2 |
|
- |
|
name: Install dependencies |
|
run: | |
|
sudo apt update |
|
sudo apt install liblightdm-gobject-1-dev libqt5webengine5 pyqt5-dev-tools python3-gi python3-pyqt5 python3-ruamel.yaml python3-pyinotify python3-xlib python3-pip |
|
sudo apt install dpkg |
|
- |
|
name: Build and install web-greeter |
|
run: make install |
|
- |
|
name: Build deb |
|
run: | |
|
cd build/ |
|
cp -r DEBIAN/ install_root/ |
|
dpkg-deb --root-owner-group --build install_root "web-greeter.deb" |
|
dpkg --info "./web-greeter.deb" |
|
- name: Upload binaries to release |
|
uses: svenstaro/upload-release-action@v2 |
|
with: |
|
repo_token: ${{ secrets.GITHUB_TOKEN }} |
|
file: build/web-greeter.deb |
|
asset_name: web-greeter-$tag.deb |
|
tag: ${{ github.ref }} |
|
overwrite: true
|
|
|