Skip to content

Commit

Permalink
Work CI-CD
Browse files Browse the repository at this point in the history
- Fix env var in script.

***NO_CI***
  • Loading branch information
josesimoes committed Feb 7, 2025
1 parent d056bb2 commit 9aed73c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .pipeline-assets/build-solutions.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ else
"" | Write-Host -ForegroundColor Yellow

# get files changed in the commit, if this is NOT a PR
$commit = Invoke-RestMethod -Uri "https://api.github.com/repos/nanoframework/Samples/commits/$(Build.SourceVersion)" -Header @{"Authorization"="$auth"} -ContentType "application/json" -Method GET
$commit = Invoke-RestMethod -Uri "https://api.github.com/repos/nanoframework/Samples/commits/$env:Build_SourceVersion" -Header @{"Authorization"="$auth"} -ContentType "application/json" -Method GET

# get files changed in the commit
$pageCounter = 1
Expand Down

0 comments on commit 9aed73c

Please sign in to comment.