Merge branch 'main' of https://github.com/WallcroftUK/vanosilla into … #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Debian Package | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build Package | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install build dependencies | |
run: sudo apt-get update && sudo apt-get install -y debhelper | |
- name: Build Debian package | |
run: dpkg-deb --build vanosilla-linux | |
- name: Upload package artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: vanosilla-deb | |
path: vanosilla-linux/*.deb |