Skip to content

Remove comment

Remove comment #8

name: calling workflow

Check failure on line 1 in .github/workflows/calling-workflow.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/calling-workflow.yaml

Invalid workflow file

`workflow-dispatch` is not a valid event name
on:
workflow-dispatch:
jobs:
call:
runs-on: ubuntu-latest
outputs:
tag=${{ steps.generate-image-tag.outputs.tag }}
steps:
- name: Set the container tag
id: generate-image-tag
run: echo "tag=1.0.0" >> $GITHUB_OUTPUTS
- name: Display output
run: echo ${{ steps.generate-image-tag.outputs.tag }}