calling workflow #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: calling workflow | |
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_OUTPUT" | |
- name: Display output | |
run: echo ${{ steps.generate-image-tag.outputs.tag }} |