We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5ee55d commit e76e995Copy full SHA for e76e995
1 file changed
.github/workflows/build-smapi.yml
@@ -88,8 +88,8 @@ jobs:
88
shell: pwsh
89
run: |
90
$updatedPatch = [int]${{steps.smapi-version.outputs.smapi_patch}} + 1
91
- $date = Get-Date -Format 'yyyyMMdd'
92
- $updatedVersion = "${{steps.smapi-version.outputs.smapi_major}}.${{steps.smapi-version.outputs.smapi_minor}}.$updatedPatch-alpha.$date"
+ $timestamp = Get-Date -Format 'yyyyMMdd-HHmm'
+ $updatedVersion = "${{steps.smapi-version.outputs.smapi_major}}.${{steps.smapi-version.outputs.smapi_minor}}.$updatedPatch-alpha.$timestamp"
93
94
"VERSION=$updatedVersion" | Out-File $env:GITHUB_ENV -Append
95
0 commit comments