Skip to content

Commit

Permalink
Fix release artifacts workflow failure (#1441)
Browse files Browse the repository at this point in the history
An unintended and unnoticed side effect of reorganizing the workspace
crates seems to have been that crane puts the built static binary in a
subdirectory. Previously the derivation output was the static executable
directly. This throws off the release artifacts GitHub action.
  • Loading branch information
vkleen committed Jul 11, 2023
1 parent 7139c7f commit 40750f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- name: "Build x86_64 static binary"
run: |
nix build --print-build-logs .#nickel-static
cp ./result nickel-x86_64-linux
cp ./result/bin/nickel nickel-x86_64-linux
- name: "Upload x86_64 static binary as release asset"
env:
GH_TOKEN: ${{ github.token }}
Expand Down

0 comments on commit 40750f9

Please sign in to comment.