fix(ci): Specify runner
This commit is contained in:
parent
e45c89fdec
commit
b7f8234960
1 changed files with 9 additions and 0 deletions
|
@ -4,10 +4,19 @@ on: [push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check:
|
check:
|
||||||
|
runs-on: ubuntu-latest-amd64
|
||||||
|
|
||||||
uses: daniel/reusable-workflows/.github/workflows/nix-flake-check.yaml@main
|
uses: daniel/reusable-workflows/.github/workflows/nix-flake-check.yaml@main
|
||||||
|
with:
|
||||||
|
runner: ubuntu-latest-amd64
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
build:
|
build:
|
||||||
|
runs-on: ubuntu-latest-amd64
|
||||||
|
|
||||||
needs: check
|
needs: check
|
||||||
|
|
||||||
uses: daniel/reusable-workflows/.github/workflows/nix-flake-build.yaml@main
|
uses: daniel/reusable-workflows/.github/workflows/nix-flake-build.yaml@main
|
||||||
|
with:
|
||||||
|
runner: ubuntu-latest-amd64
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
Reference in a new issue