mirror of https://github.com/status-im/js-waku.git
fix WAKUNODE_IMAGE input error in ci.yml
This commit is contained in:
parent
617622c3ec
commit
b7edff981f
|
@ -10,6 +10,7 @@ on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
nim_wakunode_image:
|
nim_wakunode_image:
|
||||||
|
description: "Docker hub image name taken from https://hub.docker.com/r/statusteam/nim-waku/tags. Format: statusteam/nim-waku:v0.19.0"
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
|
|
||||||
|
@ -62,7 +63,7 @@ jobs:
|
||||||
node:
|
node:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
WAKUNODE_IMAGE: ${{ github.events.inputs.nim_wakunode_image || "statusteam/nim-waku:v0.19.0" }}
|
WAKUNODE_IMAGE: ${{ github.event.inputs.nim_wakunode_image || "statusteam/nim-waku:v0.19.0" }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
@ -93,7 +94,8 @@ jobs:
|
||||||
node_optional:
|
node_optional:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
WAKUNODE_IMAGE: ${{ github.events.inputs.nim_wakunode_image || "statusteam/nim-waku:v0.19.0" }}
|
WAKUNODE_IMAGE: ${{ github.event.inputs.nim_wakunode_image || "statusteam/nim-waku:v0.19.0" }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue