We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c516529 commit 6bc6ff8Copy full SHA for 6bc6ff8
.github/workflows/detect-api-changes.yml
@@ -62,9 +62,8 @@ jobs:
62
run: |
63
NEW=${{ env.NEW_VERSION }}
64
OLD=${{ env.OLD_VERSION }}
65
- PLATFORM=${{ inputs.platform }}
66
PROJECT_FOLDER=${{ github.workspace }}
67
- BINARY_PATH=$(swift build --configuration release --show-bin-path)/public-api-diff"
+ BINARY_PATH="$(swift build --configuration release --show-bin-path)/public-api-diff"
68
69
echo "▶️ Running binary at $BINARY_PATH"
70
$BINARY_PATH project --new "$NEW" --old "$OLD" --platform "$PLATFORM" --output "$PROJECT_FOLDER/api_comparison.md" --log-output "$PROJECT_FOLDER/logs.txt"
0 commit comments