fix(nix): Specify runner as string
This commit is contained in:
parent
a672ef1178
commit
630ffe4562
2 changed files with 3 additions and 8 deletions
5
.github/workflows/nix-flake-build.yaml
vendored
5
.github/workflows/nix-flake-build.yaml
vendored
|
@ -6,10 +6,7 @@ on:
|
|||
runner:
|
||||
default: ubuntu-latest-amd64
|
||||
required: false
|
||||
type: choice
|
||||
options:
|
||||
- ubuntu-latest-amd64
|
||||
- ubuntu-latest-arm64
|
||||
type: string
|
||||
|
||||
package:
|
||||
default: ''
|
||||
|
|
6
.github/workflows/nix-flake-check.yaml
vendored
6
.github/workflows/nix-flake-check.yaml
vendored
|
@ -6,14 +6,12 @@ on:
|
|||
runner:
|
||||
default: ubuntu-latest-amd64
|
||||
required: false
|
||||
type: choice
|
||||
options:
|
||||
- ubuntu-latest-amd64
|
||||
- ubuntu-latest-arm64
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
check:
|
||||
runs-on: "${{ inputs.runner }}"
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Install Nix
|
||||
|
|
Loading…
Reference in a new issue