Skip to content

Commit

Permalink
Give executable permissions to binaries.
Browse files Browse the repository at this point in the history
  • Loading branch information
afinetooth committed Sep 30, 2024
1 parent 29357df commit 027cd43
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,10 @@ jobs:
with:
name: coveralls-linux-x86_64
path: ./binaries/


- name: Set executable permissions for x86_64 binary
run: chmod +x ./binaries/coveralls-linux-x86_64

- name: Test x86_64 binary
run: ./binaries/coveralls-linux-x86_64 --version

Expand All @@ -184,6 +187,9 @@ jobs:
with:
name: coveralls-linux-aarch64
path: ./binaries/

- name: Set executable permissions for aarch64 binary
run: chmod +x ./binaries/coveralls-linux-aarch64

- name: Test aarch64 binary in QEMU
run: |
Expand Down

0 comments on commit 027cd43

Please sign in to comment.