File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed
Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -18,13 +18,20 @@ runs:
1818 steps :
1919 - name : " Run Diff"
2020 run : |
21+ NEW=${{ github.event.inputs.new }}
22+ OLD=${{ github.event.inputs.old }}
23+ PLATFORM=${{ github.event.inputs.platform }}
24+
25+ echo "NEW : $NEW"
26+ echo "OLD : $OLD"
27+ echo "PLATFORM : $PLATFORM"
28+
2129 PROJECT_FOLDER=$PWD
2230 echo $PROJECT_FOLDER
2331 swift run public-api-diff project --new "${NEW}" --old "$OLD" --platform "$PLATFORM" --output "$PROJECT_FOLDER/api_comparison.md" --log-level debug --log-output "$PROJECT_FOLDER/logs.txt"
2432 cat "$PROJECT_FOLDER/logs.txt"
2533 cat "$PROJECT_FOLDER/api_comparison.md" >> $GITHUB_OUTPUT
2634 shell : bash
27- env :
28- NEW=${{ github.event.inputs.new }}
29- OLD=${{ github.event.inputs.old }}
30- PLATFORM=${{ github.event.inputs.platform }}
35+
36+
37+
You can’t perform that action at this time.
0 commit comments