Update workflows *.yaml

This commit is contained in:
Hang Cui
2025-10-17 12:59:46 -07:00
parent 9da21e6311
commit 9c40e143b0

View File

@@ -0,0 +1,17 @@
name: Passing Data Between Steps
on:
workflow_dispatch:
jobs:
data-passing:
runs-on: ubuntu-22.04
steps:
- name: Create data
id: sender # Set the output name for this step to Apple
run: |
echo "name=Apple" >> $GITHUB_OUTPUT
- name: Receive data
run: |
echo ${{ steps.sender.outputs.name }}