Skip to content

Commit

Permalink
Keep working around one-off pre-release testing issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
afinetooth committed Sep 20, 2024
1 parent 0f7e91f commit 9ca370a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/test_coverage_reporter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,16 @@ jobs:
- name: List files
run: ls -l

# Run the binary directly (without unzipping)
# Make the binary executable
- name: Make binary executable
run: |
if [ "${{ matrix.arch }}" = "x86_64" ]; then
chmod +x ./coveralls-linux-x86_64;
elif [ "${{ matrix.arch }}" = "aarch64" ]; then
chmod +x ./coveralls-linux-aarch64;
fi
# Run the binary directly
- name: Run the correct binary
run: |
if [ "${{ matrix.arch }}" = "x86_64" ]; then
Expand Down

0 comments on commit 9ca370a

Please sign in to comment.