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:
|
||||
check:
|
||||
runs-on: ubuntu-latest-amd64
|
||||
|
||||
uses: daniel/reusable-workflows/.github/workflows/nix-flake-check.yaml@main
|
||||
with:
|
||||
runner: ubuntu-latest-amd64
|
||||
secrets: inherit
|
||||
|
||||
build:
|
||||
runs-on: ubuntu-latest-amd64
|
||||
|
||||
needs: check
|
||||
|
||||
uses: daniel/reusable-workflows/.github/workflows/nix-flake-build.yaml@main
|
||||
with:
|
||||
runner: ubuntu-latest-amd64
|
||||
secrets: inherit
|
||||
|
|
Reference in a new issue