Skip to content

Commit

Permalink
add version input
Browse files Browse the repository at this point in the history
  • Loading branch information
Kim Fehrs committed Mar 25, 2024
1 parent 7a58ffb commit bbafe5e
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/remote-trigger.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
name: Test Babylon-Nginx

on:
repository_dispatch:
types: [workflow_dispatch]
workflow_dispatch:
inputs:
nginx_version:
description: 'The version of nginx to test'
required: true
default: '1.0.0'
type: string

jobs:
build:
Expand Down Expand Up @@ -42,8 +47,8 @@ jobs:
SEED_NODE: ${{ vars.SEED_NODE }}
NETWORK_ID: ${{ vars.NETWORK_ID }}
NETWORK_NAME: ${{ vars.NETWORK_NAME }}
RADIXDLT_NGINX_VERSION_OVERRIDE: 1.0.5-rc1
NGINX_BINARY_OVERIDE: "https://github.com/radixdlt/babylon-nginx/releases/download/1.0.5-rc1/babylon-nginx-fullnode-conf.zip"
RADIXDLT_NGINX_VERSION_OVERRIDE: ${{ inputs.nginx_version }}
NGINX_BINARY_OVERIDE: "https://github.com/radixdlt/babylon-nginx/releases/download/${{ inputs.nginx_version }}/babylon-nginx-fullnode-conf.zip"

test-userflow-systemd-simple:
runs-on: gh-ephemeral-nodecli-systemd-runner
Expand Down Expand Up @@ -77,7 +82,7 @@ jobs:
SEED_NODE: ${{ vars.SEED_NODE }}
NETWORK_ID: ${{ vars.NETWORK_ID }}
NETWORK_NAME: ${{ vars.NETWORK_NAME }}
RADIXDLT_NGINX_VERSION_OVERRIDE: 1.0.5-rc1
NGINX_BINARY_OVERIDE: "https://github.com/radixdlt/babylon-nginx/releases/download/1.0.5-rc1/babylon-nginx-fullnode-conf.zip"
RADIXDLT_NGINX_VERSION_OVERRIDE: ${{ inputs.nginx_version }}
NGINX_BINARY_OVERIDE: "https://github.com/radixdlt/babylon-nginx/releases/download/${{ inputs.nginx_version }}/babylon-nginx-fullnode-conf.zip"


0 comments on commit bbafe5e

Please sign in to comment.