mirror of
https://github.com/kiwix/kiwix-js-pwa.git
synced 2025-08-03 19:38:36 -04:00
68 lines
3.0 KiB
PowerShell
68 lines
3.0 KiB
PowerShell
# Sets the App Version Number if $INPUT_VERSION is provided, or sets up a nightly version if launched by CRON
|
|
# Script is intended to be run by a GitHub Action, but an input can be provided for testing
|
|
|
|
[CmdletBinding()]
|
|
param (
|
|
[string]$customversion = ''
|
|
)
|
|
|
|
if ($customversion) {
|
|
"`nUser set custom input version: $customversion"
|
|
$INPUT_VERSION = $customversion
|
|
}
|
|
|
|
if ($INPUT_TARGET -eq "nightly") {
|
|
"`nUser manually requested a nighlty build..."
|
|
$CRON_LAUNCHED = "1"
|
|
}
|
|
|
|
if ($INPUT_VERSION) {
|
|
$VERSION = $INPUT_VERSION
|
|
} elseif ($TAG_VERSION) {
|
|
$VERSION = $TAG_VERSION
|
|
} else {
|
|
# No version was provided, so we use one from init.js, and ensure all the others match
|
|
$app_params = Select-String 'appVersion' "$PSScriptRoot\..\www\js\init.js" -List
|
|
if ($app_params -match 'params\[[''"]appVersion[''"]]\s*=\s*[''"]([^''"]+)') {
|
|
$app_tag = $matches[1]
|
|
$VERSION = "v$app_tag"
|
|
} else {
|
|
"`nCould not construct a valid nightly version number."
|
|
}
|
|
}
|
|
# Add a commit SHA if launched by CRON
|
|
if ($VERSION -and $CRON_LAUNCHED) {
|
|
$COMMIT_ID = $(git rev-parse --short HEAD)
|
|
$VERSION = "$VERSION-$COMMIT_ID"
|
|
}
|
|
# Ensure $INPUT_VERSION will be set in the Environment for the next script or shell
|
|
if ($VERSION) {
|
|
echo "INPUT_VERSION=$VERSION" | Out-File $Env:GITHUB_ENV -Encoding utf8 -Append
|
|
}
|
|
|
|
if ($VERSION -match '^v?[\d.]') {
|
|
$VERSION = $VERSION -replace '^v', ''
|
|
"`nSetting App Version to $VERSION in service-worker.js and init.js ..."
|
|
(Get-Content ./service-worker.js) -replace '(appVersion\s*=\s*["''])[^"'']+', "`${1}$VERSION" | Set-Content -encoding "utf8BOM" ./service-worker.js
|
|
(Get-Content ./www/js/init.js) -replace '(appVersion..\s*=\s*["''])[^"'']+', "`${1}$VERSION" | Set-Content -encoding "utf8BOM" ./www/js/init.js
|
|
$PackageJson = Get-Content -Raw ./package.json
|
|
$nwVersion = $PackageJson -match '"build":\s\{[^"]+"nwVersion":\s"([^"'']+)'
|
|
$CustomVersion = $VERSION -replace '-(WikiMed|Wikivoyage)', ''
|
|
$CustomVersion = $CustomVersion -replace '^([^-]+)(-[0-9a-z]{7})?.*', '$1$2-E'
|
|
if ($nwVersion) {
|
|
$nwVersion = $matches[1]
|
|
$CustomVersion = $customversion -creplace '-E', '-N'
|
|
$BuildNWJSScript = Get-Content -Raw ./scripts/Build-NWJS.ps1
|
|
"Setting App Version to $CustomVersion in Build-NWJS.ps1 ..."
|
|
$BuildNWJSScript = $BuildNWJSScript -replace '(appBuild\s*=\s*["''])[^"'']+', ("`${1}$CustomVersion")
|
|
"Setting NWJS build to $nwVersion in Build-NWJS.ps1 ..."
|
|
$BuildNWJSScript = $BuildNWJSScript -replace '(version10\s*=\s*["''])[^"'']+', "`${1}$nwVersion"
|
|
Set-Content -encoding "utf8BOM" ./scripts/Build-NWJS.ps1 $BuildNWJSScript
|
|
}
|
|
"Setting App Version to $CustomVersion in package.json ...`n"
|
|
$PackageJson = $PackageJson -replace '("version":\s+")[^"]+', "`${1}$CustomVersion"
|
|
$PackageJson = $PackageJson -replace '\s+$', ''
|
|
Set-Content ./package.json $PackageJson
|
|
} else {
|
|
"No valid INPUT_VERSION or TAG_VERSION were provided. File version numbers were unchanged.`n"
|
|
} |