86
86
brew tap coverallsapp/coveralls --quiet
87
87
brew install coveralls --quiet
88
88
89
- # Debugging output to see where Homebrew installs coveralls
90
- echo "Homebrew bin directory:"
91
- echo $(brew --prefix)/bin
92
-
93
- # List files in the Homebrew bin directory
94
- echo "Listing files in $(brew --prefix)/bin:"
95
- ls -la $(brew --prefix)/bin
96
-
97
89
# Check if the binary exists in the possible locations
98
90
if [ -f /usr/local/bin/coveralls ]; then
99
91
echo "/usr/local/bin" >> $GITHUB_PATH
@@ -140,12 +132,6 @@ runs:
140
132
exit 1
141
133
fi
142
134
143
- # List files to ensure they are downloaded
144
- echo "Show current directory:"
145
- pwd
146
- echo "Downloaded files:"
147
- ls -la
148
-
149
135
# Verify the downloaded binary
150
136
if ! grep coveralls-linux.tar.gz coveralls-checksums.txt | sha256sum --check; then
151
137
echo "Checksum verification failed (Linux)."
@@ -156,12 +142,6 @@ runs:
156
142
# Extract the tar.gz file
157
143
tar -xzf coveralls-linux.tar.gz
158
144
159
- # List files again to verify extraction
160
- echo "Show current directory:"
161
- pwd
162
- echo "Files after extraction:"
163
- ls -la
164
-
165
145
rm coveralls-checksums.txt
166
146
echo ~/bin >> $GITHUB_PATH
167
147
@@ -178,7 +158,7 @@ runs:
178
158
shell : pwsh
179
159
run : |
180
160
if ("${{ inputs.debug }}" -eq "true") {
181
- $DebugPreference = 'Continue'
161
+ Set-PSDebug -Trace 1
182
162
}
183
163
184
164
New-Item -Path $env:HOME\bin -ItemType directory -Force
0 commit comments