mirror of
https://github.com/bitwarden/mobile
synced 2025-12-16 00:03:22 +00:00
build ios
This commit is contained in:
14
.github/scripts/ios/build.ps1
vendored
Normal file
14
.github/scripts/ios/build.ps1
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
param (
|
||||
[Parameter(Mandatory=$true)]
|
||||
[string] $configuration,
|
||||
[string] $platform = "iPhone"
|
||||
)
|
||||
|
||||
$rootPath = $env:GITHUB_WORKSPACE;
|
||||
$iosPath = $($rootPath + "\src\iOS\iOS.csproj");
|
||||
|
||||
Write-Output "########################################"
|
||||
Write-Output "##### Build $configuration Configuration for $platform Platform"
|
||||
Write-Output "########################################"
|
||||
|
||||
msbuild "$($iosPath)" "/p:Platform=$platform" "/p:Configuration=$configuration"
|
||||
4
.github/scripts/ios/decrypt-secrets.ps1
vendored
Normal file
4
.github/scripts/ios/decrypt-secrets.ps1
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
$rootPath = $env:GITHUB_WORKSPACE;
|
||||
|
||||
$decryptSecretPath = $($rootPath + ".\.github\scripts\decrypt-secret.ps1");
|
||||
|
||||
Reference in New Issue
Block a user