Skip to content

Commit

Permalink
fix: add debugging to release wf
Browse files Browse the repository at this point in the history
  • Loading branch information
louib committed Aug 16, 2024
1 parent bb02670 commit 6b9bb0e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,15 @@ jobs:
uses: DeterminateSystems/nix-installer-action@ab6bcb2d5af0e904d04aea750e2089e9dc4cbfdd # v13

- name: Build the artifact
run: nix develop .# -c cargo build --release
run: |
nix develop .# -c cargo build --release
ls -l
ls -l target
- name: Add artifact to the release
env:
target_filename: "nix2sbom-x86_64-unknown-linux-musl"
artifact_path: "target/x86_64-unknown-linux-musl/release/nix2sbom"
artifact_path: "./target/x86_64-unknown-linux-musl/release/nix2sbom"
run: |
cp "$artifact_path" "$target_filename"
sha256sum "${{ env.target_filename }}" > "${{ env.target_filename }}.sha256sum"
Expand Down

0 comments on commit 6b9bb0e

Please sign in to comment.