Skip to content

Commit

Permalink
Move setting of outputs to the Package linux binaries step of the bui…
Browse files Browse the repository at this point in the history
…ld-linux job since that is the step that places the new binaries in the dist/ directory.
  • Loading branch information
afinetooth committed Sep 30, 2024
1 parent 939ee20 commit 4d70c91
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,14 @@ jobs:

- name: Build cross-compiled linux binaries
id: build
run: make compile-and-strip-all

- name: Package linux binaries
run: |
make compile-and-strip-all
make package
echo "coveralls_x86_64=dist/coveralls-linux-x86_64" >> $GITHUB_OUTPUT
echo "coveralls_aarch64=dist/coveralls-linux-aarch64" >> $GITHUB_OUTPUT
- name: Package linux binaries
run: make package

# # Debug step to verify what files are in the dist/ directory
# - name: List files in dist/ directory
# run: ls -la dist/
Expand Down

0 comments on commit 4d70c91

Please sign in to comment.