Update pre-release.yaml

This commit is contained in:
Chris Titus 2024-08-29 21:17:50 -05:00
parent 2d3dbe4f6a
commit 2a355c00c8

View File

@ -77,7 +77,13 @@ jobs:
- name: Get latest release tag
id: get_latest_release
run: |
git fetch --tags --force
$latestTag = git describe --tags --abbrev=0
if ($LASTEXITCODE -ne 0) {
Write-Error "Failed to get latest tag. Error code: $LASTEXITCODE"
exit 1
}
Write-Host "Latest tag: $latestTag"
echo "LATEST_TAG=$latestTag" >> $env:GITHUB_ENV
shell: pwsh