Adding artifact upload to action. #4
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 sample script | ||
run: | | ||
mkdir -p .debpkg/usr/bin | ||
mkdir -p .debpkg/lib/systemd/system | ||
mkdir -p .debpkg/boot | ||
cp adsbxfeed.sh .debpkg/usr/bin/adsbxfeed.sh | ||
chmod +x .debpkg/usr/bin/adsbxfeed.sh | ||
cp adsbxfeed.service .debpkg/lib/systemd/system | ||
cp adsbxfeed.txt .debpkg/boot | ||
# create DEBIAN directory if you want to add other pre/post scripts | ||
mkdir -p .debpkg/DEBIAN | ||
echo -e "systemctl enable adsbxfeed --now" > .debpkg/DEBIAN/postinst | ||
chmod +x .debpkg/DEBIAN/postinst | ||
echo -e "systemctl disable adsbxfeed --now" > .debpkg/DEBIAN/prerm | ||
chmod +x .debpkg/DEBIAN/prerm | ||
- uses: jiro4989/build-deb-action@v3 | ||
with: | ||
package: adsbxfeed | ||
package_root: .debpkg | ||
maintainer: Greg Albrecht | ||
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 | ||