Skip to content

Dispatch

Dispatch #15

Workflow file for this run

name: "Dispatch"
on:
workflow_dispatch:
inputs:
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_repository: "docker.eventstore.com/eventstore-preview/eventstoredb-ee"
esdb_version: ${{ inputs.version }}
go_version: ${{ needs.go-version.outputs.go_version }}