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
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Set APT matrix
|
- name: Set nightly matrix
|
||||||
id: apt-ppa
|
id: nightly-ppa
|
||||||
run: |
|
run: |
|
||||||
APT=$(echo $(cat .github/workflows/apt.json) | jq --compact-output .)
|
NIGHTLY=$(echo $(cat .github/workflows/apt.json) | jq --compact-output .)
|
||||||
echo "::set-output name=apt::$APT"
|
echo "::set-output name=nightly::$NIGHTLY"
|
||||||
outputs:
|
outputs:
|
||||||
apt-matrix: ${{ steps.apt-ppa.outputs.apt }}
|
nightly-matrix: ${{ steps.nightly-ppa.outputs.nightly }}
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: ${{ matrix.description }}
|
name: ${{ matrix.description }}
|
||||||
needs: [setup]
|
needs: [setup]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix: ${{ fromJson(needs.setup.outputs.apt-matrix) }}
|
matrix: ${{ fromJson(needs.setup.outputs.nightly-matrix) }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
Loading…
Reference in New Issue
Block a user