10 - Using Data from Triggering Workflow - First #24
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: 10 - Using Data from Triggering Workflow - First | |
on: | |
workflow_dispatch: | |
jobs: | |
generate-message: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set message | |
run: echo "Hello from the first workflow" > message.txt | |
- name: Upload message as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: message | |
path: message.txt |