Skip to content

Commit

Permalink
Printing
Browse files Browse the repository at this point in the history
  • Loading branch information
mrobinson committed Sep 17, 2023
1 parent 056831d commit fb0f15a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,19 @@ jobs:
console.log("Using configuration: " + JSON.stringify(returnValue));
return returnValue;
print:
name: Print
runs-on: ubuntu-latest
needs: ["decision"]
steps:
- name: Print stuff
run: |
echo "${{ needs.decision.outputs.configuration }}"
echo "${{ fromJson(needs.decision.outputs.configuration).platforms }}"
echo ${{ contains('linux', needs.decision.outputs.configuration) }}
echo ${{ contains('linux', toJson(needs.decision.outputs.configuration)) }}
echo ${{ contains('2013', fromJson(needs.decision.outputs.configuration).layout) }}
build-win:
name: Windows
needs: ["decision"]
Expand Down

0 comments on commit fb0f15a

Please sign in to comment.