Skip to content

Commit

Permalink
fix: debug LATEST_TAG
Browse files Browse the repository at this point in the history
  • Loading branch information
yannouuuu committed Aug 9, 2024
1 parent 5658274 commit 0d4597a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ jobs:
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
zed/target/
C:/Users/runneradmin/.cargo/registry/
C:/Users/runneradmin/.cargo/git/
C:/Users/runneradmin/.rustup/
Expand Down Expand Up @@ -128,6 +127,14 @@ jobs:
exit 1
}
- name: Debug - Print LATEST_TAG
run: |
Write-Host "LATEST_TAG value: $env:LATEST_TAG"
if ([string]::IsNullOrEmpty($env:LATEST_TAG)) {
Write-Host "Error: LATEST_TAG is empty or null"
exit 1
}
- name: Rename build output
run: |
$sourceDir = "zed/target/release"
Expand Down

0 comments on commit 0d4597a

Please sign in to comment.