fix(actions): limit msix version suffix to 3 numbers
good thing i got an unlucky commit hash :p Signed-off-by: seth <getchoo@tuta.io>
This commit is contained in:
parent
0df38008a1
commit
1c66c4ed82
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@ -441,7 +441,7 @@ jobs:
|
|||||||
Set-Location ${{ env.INSTALL_DIR }}
|
Set-Location ${{ env.INSTALL_DIR }}
|
||||||
# MSIX only allows numbers in their versions,
|
# MSIX only allows numbers in their versions,
|
||||||
# so we need to sacrifice a bit of verbosity
|
# so we need to sacrifice a bit of verbosity
|
||||||
$commitNumbers = "${{ env.VERSION }}" -replace "[^0-9]", ""
|
$commitNumbers = ("${{ env.VERSION }}" -replace "[^0-9]", "").Substring(0, 3)
|
||||||
$version = "7.0.0.$commitNumbers"
|
$version = "7.0.0.$commitNumbers"
|
||||||
|
|
||||||
Copy-Item ${{ github.workspace }}\program_info\prismlauncher_*x*.png .
|
Copy-Item ${{ github.workspace }}\program_info\prismlauncher_*x*.png .
|
||||||
|
Loading…
Reference in New Issue
Block a user