forked from DGNum/infrastructure
fix(workflows): Correct typos
This commit is contained in:
parent
5f1436e4bf
commit
6ab3e4b685
4 changed files with 13 additions and 13 deletions
|
@ -4,7 +4,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- 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
|
||||
'on':
|
||||
pull_request:
|
||||
|
|
|
@ -2,7 +2,7 @@ jobs:
|
|||
bridge01:
|
||||
runs-on: nix
|
||||
steps:
|
||||
- uses: actions/checkous@v3
|
||||
- uses: actions/checkout@v3
|
||||
- env:
|
||||
BUILD_NODE: bridge01
|
||||
STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/
|
||||
|
@ -13,7 +13,7 @@ jobs:
|
|||
compute01:
|
||||
runs-on: nix
|
||||
steps:
|
||||
- uses: actions/checkous@v3
|
||||
- uses: actions/checkout@v3
|
||||
- env:
|
||||
BUILD_NODE: compute01
|
||||
STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/
|
||||
|
@ -24,7 +24,7 @@ jobs:
|
|||
geo01:
|
||||
runs-on: nix
|
||||
steps:
|
||||
- uses: actions/checkous@v3
|
||||
- uses: actions/checkout@v3
|
||||
- env:
|
||||
BUILD_NODE: geo01
|
||||
STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/
|
||||
|
@ -35,7 +35,7 @@ jobs:
|
|||
geo02:
|
||||
runs-on: nix
|
||||
steps:
|
||||
- uses: actions/checkous@v3
|
||||
- uses: actions/checkout@v3
|
||||
- env:
|
||||
BUILD_NODE: geo02
|
||||
STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/
|
||||
|
@ -46,7 +46,7 @@ jobs:
|
|||
rescue01:
|
||||
runs-on: nix
|
||||
steps:
|
||||
- uses: actions/checkous@v3
|
||||
- uses: actions/checkout@v3
|
||||
- env:
|
||||
BUILD_NODE: rescue01
|
||||
STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/
|
||||
|
@ -57,7 +57,7 @@ jobs:
|
|||
storage01:
|
||||
runs-on: nix
|
||||
steps:
|
||||
- uses: actions/checkous@v3
|
||||
- uses: actions/checkout@v3
|
||||
- env:
|
||||
BUILD_NODE: storage01
|
||||
STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/
|
||||
|
@ -68,7 +68,7 @@ jobs:
|
|||
vault01:
|
||||
runs-on: nix
|
||||
steps:
|
||||
- uses: actions/checkous@v3
|
||||
- uses: actions/checkout@v3
|
||||
- env:
|
||||
BUILD_NODE: vault01
|
||||
STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/
|
||||
|
@ -79,7 +79,7 @@ jobs:
|
|||
web01:
|
||||
runs-on: nix
|
||||
steps:
|
||||
- uses: actions/checkous@v3
|
||||
- uses: actions/checkout@v3
|
||||
- env:
|
||||
BUILD_NODE: web01
|
||||
STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/
|
||||
|
@ -90,7 +90,7 @@ jobs:
|
|||
web02:
|
||||
runs-on: nix
|
||||
steps:
|
||||
- uses: actions/checkous@v3
|
||||
- uses: actions/checkout@v3
|
||||
- env:
|
||||
BUILD_NODE: web02
|
||||
STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/
|
||||
|
@ -101,7 +101,7 @@ jobs:
|
|||
web03:
|
||||
runs-on: nix
|
||||
steps:
|
||||
- uses: actions/checkous@v3
|
||||
- uses: actions/checkout@v3
|
||||
- env:
|
||||
BUILD_NODE: web03
|
||||
STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
{ uses = "actions/checkout@v3"; }
|
||||
{
|
||||
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 ]'";
|
||||
}
|
||||
];
|
||||
};
|
||||
|
|
|
@ -16,7 +16,7 @@ in
|
|||
jobs = genAttrs nodes (node: {
|
||||
runs-on = "nix";
|
||||
steps = [
|
||||
{ uses = "actions/checkous@v3"; }
|
||||
{ uses = "actions/checkout@v3"; }
|
||||
{
|
||||
name = "Build and cache ${node}";
|
||||
run = "nix-shell --run cache-node";
|
||||
|
|
Loading…
Reference in a new issue