Skip to content

Commit

Permalink
fix: NODE_DOCKER_IMAGE variable reference for reusable-gasp-node-e2e-…
Browse files Browse the repository at this point in the history
…tests.yml
  • Loading branch information
tenequm committed Jan 21, 2025
1 parent 9a8876e commit f20ddd3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/reusable-gasp-node-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ on:
description: "gasp-node Docker image reference"
type: string
required: false
default: "gaspxyz/rollup-node:main"
# default: "gaspxyz/rollup-node:main"
default: ''
skipBuild:
description: "Skip build phase"
type: string
Expand All @@ -38,7 +39,8 @@ on:
description: "gasp-node Docker image reference"
type: string
required: false
default: "gaspxyz/rollup-node:main"
# default: "gaspxyz/rollup-node:main"
default: ''
skipBuild:
description: "Skip build phase"
type: string
Expand Down Expand Up @@ -173,7 +175,7 @@ jobs:
E2E_TREASURY_BURN_PALLET_ADDRESS: ${{ secrets.E2E_TREASURY_BURN_PALLET_ADDRESS }}
TEST_SUDO_NAME: "//Alice"
E2EBRANCHNAME: "main"
NODE_DOCKER_IMAGE: ${{ inputs.nodeDockerImage || format('gaspxyz/rollup-node:{0}', inputs.globalVersion) }}
NODE_DOCKER_IMAGE: ${{ inputs.nodeDockerImage != '' && inputs.nodeDockerImage || format('gaspxyz/rollup-node:{0}', inputs.globalVersion) }}
steps:
- uses: actions/checkout@v4
- name: Adapt if fast runtime
Expand Down

0 comments on commit f20ddd3

Please sign in to comment.