Skip to content

Commit

Permalink
Merge pull request #173 from theohbrothers/refactor/entrypoint-simpli…
Browse files Browse the repository at this point in the history
…fy-variable-interpolation-in-invoke-release.ps1

Refactor (entrypoint): Simplify variable interpolation in `Invoke-Release.ps1`
  • Loading branch information
joeltimothyoh authored Jul 30, 2024
2 parents 2201886 + 747bd96 commit 98a62c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/ci/Invoke-Release.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ try {
TagName = $env:RELEASE_TAG_REF
TargetCommitish = if (Test-Path -Path $private:ProjectDir -PathType Container) {
Push-Location $private:ProjectDir
git rev-parse "$env:RELEASE_TAG_REF"
git rev-parse $env:RELEASE_TAG_REF
Pop-Location
}
Name = if ($env:RELEASE_NAME) {
Expand Down

0 comments on commit 98a62c7

Please sign in to comment.