Skip to content

Dispatch

Dispatch #10

Workflow file for this run

name: "Dispatch"
on:
workflow_dispatch:
inputs:
runtime_env:
description: The runtime environment we want to run like release or staging
type: string
default: release
version:
description: Version tag
required: true
type: string
jobs:
go-version:
uses: ./.github/workflows/go-version.yml
test:
needs: go-version
name: Test
uses: ./.github/workflows/tests.yml
with:
esdb_version: ${{ inputs.version }}
runtime_env: ${{ inputs.runtime_env }}
go_version: ${{ needs.go-version.outputs.go_version }}