mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
Commit check for nightly build workflow
This commit is contained in:
parent
084e28f0ca
commit
23470ac90a
12
.github/workflows/nightly.yml
vendored
12
.github/workflows/nightly.yml
vendored
@ -29,20 +29,20 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set APT matrix
|
||||
id: apt-ppa
|
||||
- name: Set nightly matrix
|
||||
id: nightly-ppa
|
||||
run: |
|
||||
APT=$(echo $(cat .github/workflows/apt.json) | jq --compact-output .)
|
||||
echo "::set-output name=apt::$APT"
|
||||
NIGHTLY=$(echo $(cat .github/workflows/apt.json) | jq --compact-output .)
|
||||
echo "::set-output name=nightly::$NIGHTLY"
|
||||
outputs:
|
||||
apt-matrix: ${{ steps.apt-ppa.outputs.apt }}
|
||||
nightly-matrix: ${{ steps.nightly-ppa.outputs.nightly }}
|
||||
|
||||
build:
|
||||
name: ${{ matrix.description }}
|
||||
needs: [setup]
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix: ${{ fromJson(needs.setup.outputs.apt-matrix) }}
|
||||
matrix: ${{ fromJson(needs.setup.outputs.nightly-matrix) }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
Loading…
Reference in New Issue
Block a user