mirror of https://github.com/status-im/js-waku.git
manually triggerr ci with custom nim node image
This commit is contained in:
parent
812310a816
commit
617622c3ec
|
@ -7,6 +7,11 @@ on:
|
|||
- "staging"
|
||||
- "trying"
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
nim_wakunode_image:
|
||||
required: false
|
||||
type: string
|
||||
|
||||
env:
|
||||
NODE_JS: "18"
|
||||
|
@ -57,7 +62,7 @@ jobs:
|
|||
node:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
WAKUNODE_IMAGE: "statusteam/nim-waku:v0.19.0"
|
||||
WAKUNODE_IMAGE: ${{ github.events.inputs.nim_wakunode_image || "statusteam/nim-waku:v0.19.0" }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
|
@ -88,7 +93,7 @@ jobs:
|
|||
node_optional:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
WAKUNODE_IMAGE: "statusteam/nim-waku:v0.19.0"
|
||||
WAKUNODE_IMAGE: ${{ github.events.inputs.nim_wakunode_image || "statusteam/nim-waku:v0.19.0" }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
|
|
|
@ -9,9 +9,9 @@ const WAKUNODE_IMAGE =
|
|||
async function main() {
|
||||
try {
|
||||
await execAsync(`docker inspect ${WAKUNODE_IMAGE}`);
|
||||
console.log("Using local image");
|
||||
console.log(`Using local image ${WAKUNODE_IMAGE}`);
|
||||
} catch (error) {
|
||||
console.log("Pulling image...");
|
||||
console.log(`Pulling image ${WAKUNODE_IMAGE}`);
|
||||
await execAsync(`docker pull ${WAKUNODE_IMAGE}`);
|
||||
console.log("Image pulled");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue