adding mkdeb.sh #10
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 | |
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Create Debian package structure | |
run: mkdeb.sh | |
- name: Make amd64 Debian package | |
uses: jiro4989/build-deb-action@v3 | |
with: | |
package: adsbxfeed | |
package_root: .debpkg | |
maintainer: Greg Albrecht | |
arch: amd64 | |
version: ${{ github.ref }} # refs/tags/v*.*.* | |
desc: "Configures ADSBExchange ADS-B feeder." | |
homepage: 'https://github.com/snstac/adsbxfeed' | |
- name: Make arm64 Debian package | |
uses: jiro4989/build-deb-action@v3 | |
with: | |
package: adsbxfeed | |
package_root: .debpkg | |
maintainer: Greg Albrecht | |
arch: arm64 | |
version: ${{ github.ref }} # refs/tags/v*.*.* | |
desc: "Configures ADSBExchange ADS-B feeder." | |
homepage: 'https://github.com/snstac/adsbxfeed' | |
- uses: actions/upload-artifact@master | |
with: | |
name: artifact-deb | |
path: | | |
*.deb | |
- name: Create 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 | |
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 |