Skip to content

Building pipeline: main -> manual #13

Building pipeline: main -> manual

Building pipeline: main -> manual #13

name: Manual docker building
on:
workflow_dispatch:
inputs:
pipeline_tag:
description: "Pipeline tag"
required: true
default: "manual"
run-name: "Building pipeline: ${{ github.ref_name }} -> ${{ inputs.pipeline_tag }}"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check formatting
uses: psf/black@stable
with:
version: 23.12.0
build-pipeline:
needs:
- lint
uses: ./.github/workflows/docker-build.yaml

Check failure on line 22 in .github/workflows/manual-docker.yaml

View workflow run for this annotation

GitHub Actions / Manual docker building

Invalid workflow file

The workflow is not valid. In .github/workflows/manual-docker.yaml (Line: 22, Col: 11): Error from called workflow mystic-ai/ci-cd-example/.github/workflows/docker-build.yaml@b352a39be83c5bd6856589f2798d6c849d4caff1 (Line: 36, Col: 14): Unrecognized named-value: 'pipelineTag'. Located at position 1 within expression: pipelineTag
with:
pipelineTag: ${{ inputs.pipeline_tag }}
secrets:
PIPELINE_API_TOKEN: ${{ secrets.PIPELINE_API_TOKEN }}