mirror of
https://github.com/nttgin/BGPalerter.git
synced 2024-05-19 06:50:08 +00:00
24 lines
551 B
YAML
24 lines
551 B
YAML
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
build-debs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: jtdor/build-deb-action@v1
|
|
env:
|
|
DEB_BUILD_OPTIONS: noautodbgsym
|
|
with:
|
|
buildpackage-opts: --build=binary --no-sign
|
|
extra-build-deps: git
|
|
- uses: "marvinpinto/action-automatic-releases@latest"
|
|
with:
|
|
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
|
prerelease: true
|
|
files: |
|
|
LICENSE
|
|
debian/artifacts/*.deb
|