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:
|
runner:
|
||||||
default: ubuntu-latest-amd64
|
default: ubuntu-latest-amd64
|
||||||
required: false
|
required: false
|
||||||
type: choice
|
type: string
|
||||||
options:
|
|
||||||
- ubuntu-latest-amd64
|
|
||||||
- ubuntu-latest-arm64
|
|
||||||
|
|
||||||
package:
|
package:
|
||||||
default: ''
|
default: ''
|
||||||
|
|
6
.github/workflows/nix-flake-check.yaml
vendored
6
.github/workflows/nix-flake-check.yaml
vendored
|
@ -6,14 +6,12 @@ on:
|
||||||
runner:
|
runner:
|
||||||
default: ubuntu-latest-amd64
|
default: ubuntu-latest-amd64
|
||||||
required: false
|
required: false
|
||||||
type: choice
|
type: string
|
||||||
options:
|
|
||||||
- ubuntu-latest-amd64
|
|
||||||
- ubuntu-latest-arm64
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check:
|
check:
|
||||||
runs-on: "${{ inputs.runner }}"
|
runs-on: "${{ inputs.runner }}"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Install Nix
|
- name: Install Nix
|
||||||
|
|
Loading…
Reference in a new issue