Release 2.0.12

This commit is contained in:
Markus
2021-11-21 13:26:17 +00:00
committed by GitHub
parent 72d99a1121
commit df149583d3
6 changed files with 45 additions and 26 deletions

View File

@@ -1,5 +1,15 @@
name: Hyperion APT Build
on: [workflow_call]
on:
workflow_call:
secrets:
APT_GPG:
required: true
APT_USER:
required: true
APT_PASSWORD:
required: true
APT_DRAFT:
required: true
jobs:
setup:
@@ -93,7 +103,7 @@ jobs:
- name: Include artifacts into the package source
run: |
for file in artifact/*.deb; do
for file in artifact/hyperion_*.deb; do
if [ -f "$file" ]; then
dist=${file#*~}
dist=${dist%_*}

View File

@@ -199,11 +199,3 @@ jobs:
with:
name: windows
path: windows
##########################
###### APT workflow ######
##########################
apt_build:
name: APT Build
uses: hyperion-project/hyperion.ng/.github/workflows/apt.yml@master

View File

@@ -201,3 +201,8 @@ jobs:
name: APT Build
needs: [Linux, macOS, windows]
uses: hyperion-project/hyperion.ng/.github/workflows/apt.yml@master
secrets:
APT_GPG: ${{ secrets.APT_GPG }}
APT_USER: ${{ secrets.APT_USER }}
APT_PASSWORD: ${{ secrets.APT_PASSWORD }}
APT_DRAFT: ${{ secrets.APT_DRAFT }}