removing dh-systemd #16
Workflow file for this run
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: | |
tags: | |
- '*' | |
env: | |
DEB_BUILD_OPTIONS: nocheck | |
jobs: | |
build-artifact: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
# - name: Add universe repository | |
# run: sudo add-apt-repository universe | |
# - name: Update apt cache | |
# run: sudo apt update -qq | |
- name: Install Debian Package Building Dependencies | |
run: sudo apt-get install build-essential debhelper libboost-system-dev libboost-program-options-dev libboost-regex-dev libboost-filesystem-dev libsoapysdr-dev | |
- name: Create Debian Package | |
run: dpkg-buildpackage -b | |
- name: List debian directory | |
run: cp ../*.deb . | |
- name: Upload Artifacts to GitHub | |
uses: actions/upload-artifact@master | |
with: | |
name: artifact-deb | |
path: ./*.deb | |
- name: Create GitHub Release | |
id: create_release | |
uses: actions/create-release@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
draft: false | |
prerelease: false | |
- name: Upload Release Asset to GitHub | |
id: upload-release-asset | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ./*.deb | |
tag: ${{ github.ref }} | |
overwrite: true | |
file_glob: true |