1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-16 00:03:22 +00:00

build ios

This commit is contained in:
Kyle Spearrin
2020-06-09 10:47:09 -04:00
parent a05e037308
commit 0e41945a8a
3 changed files with 28 additions and 2 deletions

14
.github/scripts/ios/build.ps1 vendored Normal file
View 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"

View File

@@ -0,0 +1,4 @@
$rootPath = $env:GITHUB_WORKSPACE;
$decryptSecretPath = $($rootPath + ".\.github\scripts\decrypt-secret.ps1");