1
0
mirror of https://github.com/nttgin/BGPalerter.git synced 2024-05-19 06:50:08 +00:00

upload basic build

This commit is contained in:
Massimo Candela
2023-12-24 16:49:22 +01:00
parent 725831c542
commit 3e70d1ebd6
2 changed files with 20 additions and 24 deletions

View File

@ -1,24 +0,0 @@
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
bin/*
debian/artifacts/*.deb

View File

@ -34,6 +34,7 @@ jobs:
run: |
npm install
npm run compile
npm run build
- name: Upload Artifact
uses: actions/upload-artifact@v3
@ -43,6 +44,25 @@ jobs:
path: ~/.npm/_logs/*
retention-days: 14
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
bin/*
debian/artifacts/*.deb
test:
name: Test
runs-on: ubuntu-latest