Skip to content

Dispatch CE

Dispatch CE #15

Workflow file for this run

name: Dispatch CE
on:
workflow_dispatch:
inputs:
docker-tag:
description: "Docker tag"
required: true
type: string
docker-image:
description: "Docker image"
required: true
type: string
jobs:
test:
uses: ./.github/workflows/base.yml

Check failure on line 17 in .github/workflows/dispatch-ce.yml

View workflow run for this annotation

GitHub Actions / Dispatch CE

Invalid workflow file

error parsing called workflow ".github/workflows/dispatch-ce.yml" -> "./.github/workflows/base.yml" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
strategy:
fail-fast: false
matrix:
test: [ Streams, PersistentSubscriptions, Operations, UserManagement, ProjectionManagement ]
name: Test CE (${{ inputs.docker-tag }})
with:
docker-tag: ${{ inputs.docker-tag }}
docker-image: ${{ inputs.docker-image }}
test: ${{ matrix.test }}
secrets:
CLOUDSMITH_CICD_USER: ${{ secrets.CLOUDSMITH_CICD_USER }}
CLOUDSMITH_CICD_TOKEN: ${{ secrets.CLOUDSMITH_CICD_TOKEN }}