Skip to content

Commit f7c9e3c

Browse files
committed
Config
1 parent ccfadd2 commit f7c9e3c

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/scripts/Configure-AppxManifest.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ param(
1414
[xml]$xmlDoc = Get-Content $PackageManifestPath
1515
$xmlDoc.Package.Identity.Publisher = $Publisher
1616

17-
if ($Branch -eq "Sideload_Preview")
17+
if ($Branch -eq "SideloadPreview")
1818
{
1919
# Set identities
2020
$xmlDoc.Package.Identity.Name="FilesPreview"
@@ -29,7 +29,7 @@ if ($Branch -eq "Sideload_Preview")
2929
Set-Content $_ -NoNewline `
3030
}
3131
}
32-
elseif ($Branch -eq "Sideload_Stable")
32+
elseif ($Branch -eq "SideloadStable")
3333
{
3434
# Set identities
3535
$xmlDoc.Package.Identity.Name="Files"
@@ -44,7 +44,7 @@ elseif ($Branch -eq "Sideload_Stable")
4444
Set-Content $_ -NoNewline `
4545
}
4646
}
47-
elseif ($Branch -eq "Store_Stable")
47+
elseif ($Branch -eq "StoreStable")
4848
{
4949
# Set identities
5050
$xmlDoc.Package.Identity.Name="49306atecsolution.FilesUWP"
@@ -66,7 +66,7 @@ elseif ($Branch -eq "Store_Stable")
6666
Set-Content $_ -NoNewline `
6767
}
6868
}
69-
elseif ($Branch -eq "Store_Preview")
69+
elseif ($Branch -eq "StorePreview")
7070
{
7171
# Set identities
7272
$xmlDoc.Package.Identity.Name="49306atecsolution.FilesPreview"

.github/workflows/cd-sideload-preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
fail-fast: false
2525
matrix:
26-
configuration: [Sideload_Preview]
26+
configuration: [Release]
2727
platform: [x64]
2828
env:
2929
SOLUTION_NAME: 'Files.sln'
@@ -55,7 +55,7 @@ jobs:
5555
shell: pwsh
5656
run: |
5757
. './.github/scripts/Configure-AppxManifest.ps1' `
58-
-Branch "$env:CONFIGURATION" `
58+
-Branch "SideloadPreview" `
5959
-PackageManifestPath "$env:PACKAGE_MANIFEST_PATH" `
6060
-Publisher "$env:SIDELOAD_PUBLISHER_SECRET" `
6161
-WorkingDir "$env:WORKING_DIR" `

.github/workflows/cd-sideload-stable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
fail-fast: false
2525
matrix:
26-
configuration: [Sideload_Stable]
26+
configuration: [Release]
2727
platform: [x64]
2828
env:
2929
SOLUTION_NAME: 'Files.sln'
@@ -55,7 +55,7 @@ jobs:
5555
shell: pwsh
5656
run: |
5757
. './.github/scripts/Configure-AppxManifest.ps1' `
58-
-Branch "$env:CONFIGURATION" `
58+
-Branch "SideloadStable" `
5959
-PackageManifestPath "$env:PACKAGE_MANIFEST_PATH" `
6060
-Publisher "$env:SIDELOAD_PUBLISHER_SECRET" `
6161
-WorkingDir "$env:WORKING_DIR" `

.github/workflows/cd-store-preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
configuration: [Store_Preview]
25+
configuration: [Release]
2626
platform: [x64]
2727
env:
2828
SOLUTION_NAME: 'Files.sln'
@@ -52,7 +52,7 @@ jobs:
5252
shell: pwsh
5353
run: |
5454
. './.github/scripts/Configure-AppxManifest.ps1' `
55-
-Branch "$env:CONFIGURATION" `
55+
-Branch "StorePreview" `
5656
-PackageManifestPath "$env:PACKAGE_MANIFEST_PATH" `
5757
-Publisher "$env:STORE_PUBLISHER_SECRET" `
5858
-WorkingDir "$env:WORKING_DIR" `

.github/workflows/cd-store-stable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
configuration: [Store_Stable]
25+
configuration: [Release]
2626
platform: [x64]
2727
env:
2828
SOLUTION_NAME: 'Files.sln'
@@ -52,7 +52,7 @@ jobs:
5252
shell: pwsh
5353
run: |
5454
. './.github/scripts/Configure-AppxManifest.ps1' `
55-
-Branch "$env:CONFIGURATION" `
55+
-Branch "StoreStable" `
5656
-PackageManifestPath "$env:PACKAGE_MANIFEST_PATH" `
5757
-Publisher "$env:STORE_PUBLISHER_SECRET" `
5858
-WorkingDir "$env:WORKING_DIR" `

0 commit comments

Comments
 (0)