cleanup files #2
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: Demo how GITHUB_OUTPUT works | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- '.github/workflows/jobs-example.yml' | |
# Example from https://docs.github.com/en/actions/using-jobs/defining-outputs-for-jobs | |
jobs: | |
job1: | |
runs-on: ubuntu-latest | |
# Map a step output to a job output | |
outputs: | |
output1: ${{ steps.step1.outputs.test }} | |
output2: ${{ steps.step2.outputs.test }} | |
steps: | |
- id: step1 | |
run: echo "test=hello" >> "$GITHUB_OUTPUT" | |
- id: step2 | |
run: echo "test=world" >> "$GITHUB_OUTPUT" | |
job2: | |
runs-on: ubuntu-latest | |
needs: job1 | |
steps: | |
- env: | |
OUTPUT1: ${{needs.job1.outputs.output1}} | |
OUTPUT2: ${{needs.job1.outputs.output2}} | |
run: echo "$OUTPUT1 $OUTPUT2" |