Skip to content

Commit bae4ac4

Browse files
author
Keith Blackstone
committed
restore release creation
1 parent b02e52b commit bae4ac4

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

.github/workflows/create-usd-release.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ jobs:
4545
$usdFormattedVersion = "$($usd_version.Substring(0,2)).$($usd_version.Substring(2))"
4646
"USD_FORMATTED_VERSION=$usdFormattedVersion" | Out-File -FilePath $env:GITHUB_ENV -Append
4747
$releaseName = "USD-${usd_version}-Artifacts"
48-
$tagName = $releaseName
4948
$ASSET_NAME = "usd-${usd_version}-${{ matrix.os }}.zip"
5049
$releaseExists = $false
5150
$stderr = $null
@@ -54,13 +53,7 @@ jobs:
5453
$releaseExists = $false
5554
"exists=false" | Out-File -FilePath $env:GITHUB_ENV -Append
5655
Write-Output "Release not found: $releaseName -- Creating new one"
57-
58-
# Create an annotated tag
59-
git tag -a $tagName -m "USD build version $usdFormattedVersion"
60-
git push origin $tagName
61-
62-
# Create the release using the tag
63-
gh release create $tagName --title "$releaseName" --notes "USD built with the following parameters: --build-shared --openimageio --tools --python --debug-python --usd-imaging --build-variant release --use-cxx11-abi=0 (linux)"
56+
gh release create $releaseName --notes "USD built with the following parameters: --build-shared --openimageio --tools --python --debug-python --usd-imaging --build-variant release --use-cxx11-abi=0 (linux)"
6457
} else {
6558
$releaseExists = $true
6659
}

0 commit comments

Comments
 (0)