Skip to content

Commit 234572c

Browse files
committed
fix(ci): format bleeding-edge release tag as edge-yyyy.MM.dd-sha for GOverlay compatibility
1 parent 57d1a59 commit 234572c

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/build-upstream.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,10 @@ jobs:
107107
$assetName = "OptiScaler_master_${shortSha}.7z"
108108
}
109109
'latest-any' {
110-
$tagName = "any-$branchSlug-$shortSha"
111-
$releaseName = "latest-any: $branchName @ $shortSha"
112-
$assetName = "OptiScaler_any_${branchSlug}_${shortSha}.7z"
110+
$dateStamp = $latest.CommitDate.ToString('yyyy.MM.dd')
111+
$tagName = "edge-$dateStamp-$shortSha"
112+
$releaseName = "edge: $branchName @ $shortSha ($dateStamp)"
113+
$assetName = "optiscaler-edge.7z"
113114
}
114115
}
115116

0 commit comments

Comments
 (0)