fix(workflows): Correct typos

This commit is contained in:
Tom Hubrecht 2024-11-11 18:01:44 +01:00
parent 5f1436e4bf
commit 6ab3e4b685
Signed by: thubrecht
SSH key fingerprint: SHA256:r+nK/SIcWlJ0zFZJGHtlAoRwq1Rm+WcKAm5ADYMoQPc
4 changed files with 13 additions and 13 deletions

View file

@ -4,7 +4,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Check that the workflows are up to date - name: Check that the workflows are up to date
run: nix-shell --run '[ $(git status --porcelain) -eq 0 ]' run: nix-shell --run '[ $(git status --porcelain | wc -l) -eq 0 ]'
name: Check workflows name: Check workflows
'on': 'on':
pull_request: pull_request:

View file

@ -2,7 +2,7 @@ jobs:
bridge01: bridge01:
runs-on: nix runs-on: nix
steps: steps:
- uses: actions/checkous@v3 - uses: actions/checkout@v3
- env: - env:
BUILD_NODE: bridge01 BUILD_NODE: bridge01
STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/ STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/
@ -13,7 +13,7 @@ jobs:
compute01: compute01:
runs-on: nix runs-on: nix
steps: steps:
- uses: actions/checkous@v3 - uses: actions/checkout@v3
- env: - env:
BUILD_NODE: compute01 BUILD_NODE: compute01
STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/ STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/
@ -24,7 +24,7 @@ jobs:
geo01: geo01:
runs-on: nix runs-on: nix
steps: steps:
- uses: actions/checkous@v3 - uses: actions/checkout@v3
- env: - env:
BUILD_NODE: geo01 BUILD_NODE: geo01
STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/ STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/
@ -35,7 +35,7 @@ jobs:
geo02: geo02:
runs-on: nix runs-on: nix
steps: steps:
- uses: actions/checkous@v3 - uses: actions/checkout@v3
- env: - env:
BUILD_NODE: geo02 BUILD_NODE: geo02
STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/ STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/
@ -46,7 +46,7 @@ jobs:
rescue01: rescue01:
runs-on: nix runs-on: nix
steps: steps:
- uses: actions/checkous@v3 - uses: actions/checkout@v3
- env: - env:
BUILD_NODE: rescue01 BUILD_NODE: rescue01
STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/ STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/
@ -57,7 +57,7 @@ jobs:
storage01: storage01:
runs-on: nix runs-on: nix
steps: steps:
- uses: actions/checkous@v3 - uses: actions/checkout@v3
- env: - env:
BUILD_NODE: storage01 BUILD_NODE: storage01
STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/ STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/
@ -68,7 +68,7 @@ jobs:
vault01: vault01:
runs-on: nix runs-on: nix
steps: steps:
- uses: actions/checkous@v3 - uses: actions/checkout@v3
- env: - env:
BUILD_NODE: vault01 BUILD_NODE: vault01
STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/ STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/
@ -79,7 +79,7 @@ jobs:
web01: web01:
runs-on: nix runs-on: nix
steps: steps:
- uses: actions/checkous@v3 - uses: actions/checkout@v3
- env: - env:
BUILD_NODE: web01 BUILD_NODE: web01
STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/ STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/
@ -90,7 +90,7 @@ jobs:
web02: web02:
runs-on: nix runs-on: nix
steps: steps:
- uses: actions/checkous@v3 - uses: actions/checkout@v3
- env: - env:
BUILD_NODE: web02 BUILD_NODE: web02
STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/ STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/
@ -101,7 +101,7 @@ jobs:
web03: web03:
runs-on: nix runs-on: nix
steps: steps:
- uses: actions/checkous@v3 - uses: actions/checkout@v3
- env: - env:
BUILD_NODE: web03 BUILD_NODE: web03
STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/ STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/

View file

@ -12,7 +12,7 @@
{ uses = "actions/checkout@v3"; } { uses = "actions/checkout@v3"; }
{ {
name = "Check that the workflows are up to date"; name = "Check that the workflows are up to date";
run = "nix-shell --run '[ $(git status --porcelain) -eq 0 ]'"; run = "nix-shell --run '[ $(git status --porcelain | wc -l) -eq 0 ]'";
} }
]; ];
}; };

View file

@ -16,7 +16,7 @@ in
jobs = genAttrs nodes (node: { jobs = genAttrs nodes (node: {
runs-on = "nix"; runs-on = "nix";
steps = [ steps = [
{ uses = "actions/checkous@v3"; } { uses = "actions/checkout@v3"; }
{ {
name = "Build and cache ${node}"; name = "Build and cache ${node}";
run = "nix-shell --run cache-node"; run = "nix-shell --run cache-node";