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:
|
||||
inputs:
|
||||
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
|
||||
type: string
|
||||
|
||||
|
@ -62,7 +63,7 @@ jobs:
|
|||
node:
|
||||
runs-on: ubuntu-latest
|
||||
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:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
|
@ -93,7 +94,8 @@ jobs:
|
|||
node_optional:
|
||||
runs-on: ubuntu-latest
|
||||
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:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
|
|
Loading…
Reference in New Issue