1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

checkout safari via github action

This commit is contained in:
Kyle Spearrin
2020-09-22 17:28:09 -04:00
parent 1009b3b055
commit 109cab2fb7
3 changed files with 31 additions and 11 deletions

View File

@@ -0,0 +1,8 @@
$rootPath = $env:GITHUB_WORKSPACE;
$distDir = $rootPath + "\dist";
$distSafariDir = $distDir + "\safari";
if (Test-Path -Path $distSafariDir) {
Remove-Item -Recurse -Force $distSafariDir
}
New-Item $distSafariDir -ItemType Directory -ea 0