mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
32 lines
556 B
YAML
32 lines
556 B
YAML
name: Build NixOS
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- '**/*.md'
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ inputs.host }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
checks:
|
|
uses: ./.github/workflows/checks.yml
|
|
secrets: inherit
|
|
|
|
build:
|
|
needs: checks
|
|
strategy:
|
|
max-parallel: 1
|
|
matrix:
|
|
host:
|
|
- othalan
|
|
# - mannaz
|
|
# - algiz
|
|
uses: ./.github/workflows/build.yml
|
|
with:
|
|
host: "${{ matrix.host }}"
|
|
secrets: inherit
|