2 Commits

Author SHA1 Message Date
b67282da9f Merge pull request 'fix download path' (#1) from feature/fix-downloads into main
All checks were successful
Update Determinate Nix binary / download-binary (push) Successful in 28s
Update Determinate Nix binary / commit-data (push) Successful in 28s
Reviewed-on: #1
2025-07-04 13:03:20 -04:00
3c1d60a01b fix download path
All checks were successful
Update Determinate Nix binary / download-binary (push) Has been skipped
Update Determinate Nix binary / commit-data (push) Has been skipped
2025-07-04 13:02:52 -04:00

View File

@@ -35,7 +35,7 @@ jobs:
- name: Download binary - name: Download binary
id: binary-check id: binary-check
run: | run: |
wget --content-disposition -nv "$DETERMINATE_URL" wget --content-disposition -nv "$DETERMINATE_URL" -o "$DETERMINATE_BINARY"
if git diff --quiet && git ls-files --error-unmatch "$DETERMINATE_BINARY"; then if git diff --quiet && git ls-files --error-unmatch "$DETERMINATE_BINARY"; then
echo "DETERMINATE_BINARY_DIFF=0" | tee -a "$GITHUB_OUTPUT" echo "DETERMINATE_BINARY_DIFF=0" | tee -a "$GITHUB_OUTPUT"