Skip to content

Commit

Permalink
Update getting-started.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrettgaither authored Jun 4, 2024
1 parent 0b12037 commit fb6a96a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/getting-started.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,19 @@ jobs:
steps:
- name: Run a one-line script
run: echo ${{secrets.MY_PASSWORD}}

job2:
runs-on: ubuntu-latest
outputs:
output1: ${{steps.step1.outputs.test}}
steps:
- id: step1
run: echo "test=howdy partner" >> "$GITHUB_OUTPUT"

job3:
runs-on: ubuntu-latest
needs: job2
steps:
- env:
OUTPUT1: ${{needs.job2.outputs.output1}}
run: echo "$OUTPUT1"

0 comments on commit fb6a96a

Please sign in to comment.