From 312adc7d8ae80213ff4aac167c3c565f7483a6c8 Mon Sep 17 00:00:00 2001 From: 0x5BFA <62196528+0x5bfa@users.noreply.github.com> Date: Thu, 25 Jul 2024 13:15:18 +0900 Subject: [PATCH 01/15] Create SubmitTo-MicrosoftStore --- scripts/SubmitTo-MicrosoftStore | 38 +++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 scripts/SubmitTo-MicrosoftStore diff --git a/scripts/SubmitTo-MicrosoftStore b/scripts/SubmitTo-MicrosoftStore new file mode 100644 index 000000000..533600a45 --- /dev/null +++ b/scripts/SubmitTo-MicrosoftStore @@ -0,0 +1,38 @@ +param([string]$appxPathParam) + +if (-not (Test-Path -Path $PSBoundParameters["appxPathParam"])) { + Write-Error "The appxupload file does not exist. Double check that you have passed the file path as a parameter and the file exists." -ErrorAction Stop +} + +Set-ExecutionPolicy RemoteSigned -Force + +# Prepare materials from previous steps and runner environment variables +$appxUploadFilePath = $PSBoundParameters["appxPathParam"] +$username = $env:PartnerCenterClientId +$password = ConvertTo-SecureString $env:PartnerCenterClientSecret -AsPlainText -Force +$appStoreId = $env:PartnerCenterStoreId +$tenantId = $env:PartnerCenterTenantId + +# ********* Create temporary directory for submission artifacts ********* +$sbTempFolderPath = New-Item -Type Directory -Force -Path (Join-Path -Path 'D:\a\MediaFileManager\MediaFileManager\' -ChildPath 'SBTemp') + +# ********* Install StoreBroker and import PowerShell Module ********* +#git clone https://github.com/Microsoft/StoreBroker.git 'D:\a\MediaFileManager\MediaFileManager\SBGitRoot\' +#Import-Module -Force 'D:\a\MediaFileManager\MediaFileManager\SBGitRoot\StoreBroker' + +Set-PSRepository -Name "PSGallery" -InstallationPolicy Trusted +Install-Module -Name StoreBroker + +# ********* Authenticate Store Broker ********* +$cred = New-Object System.Management.Automation.PSCredential ($username, $password) +Set-StoreBrokerAuthentication -TenantId $tenantId -Credential $cred + +# ********* Prepare Submission Package ********* +$configFilePath = 'D:\a\MediaFileManager\MediaFileManager\.scripts\sbConfig.json' +New-SubmissionPackage -ConfigPath $configFilePath -AppxPath $appxUploadFilePath -OutPath $sbTempFolderPath -OutName 'submission' + +# ********* UPDATE & COMMIT SUBMISSION ********* +$submissionDataPath = Join-Path -Path $sbTempFolderPath -ChildPath 'submission.json' +$submissionPackagePath = Join-Path -Path $sbTempFolderPath -ChildPath 'submission.zip' + +Update-ApplicationSubmission -Verbose -ReplacePackages -AppId $appStoreId -SubmissionDataPath $submissionDataPath -PackagePath $submissionPackagePath -AutoCommit -Force -NoStatus From 963b0d5364ae1b60185558b551b065f0e6d16f08 Mon Sep 17 00:00:00 2001 From: 0x5BFA <62196528+0x5bfa@users.noreply.github.com> Date: Thu, 25 Jul 2024 13:29:35 +0900 Subject: [PATCH 02/15] Update and rename SubmitTo-MicrosoftStore to SubmitTo-MicrosoftStore.ps1 --- scripts/SubmitTo-MicrosoftStore | 38 ----------------------------- scripts/SubmitTo-MicrosoftStore.ps1 | 30 +++++++++++++++++++++++ 2 files changed, 30 insertions(+), 38 deletions(-) delete mode 100644 scripts/SubmitTo-MicrosoftStore create mode 100644 scripts/SubmitTo-MicrosoftStore.ps1 diff --git a/scripts/SubmitTo-MicrosoftStore b/scripts/SubmitTo-MicrosoftStore deleted file mode 100644 index 533600a45..000000000 --- a/scripts/SubmitTo-MicrosoftStore +++ /dev/null @@ -1,38 +0,0 @@ -param([string]$appxPathParam) - -if (-not (Test-Path -Path $PSBoundParameters["appxPathParam"])) { - Write-Error "The appxupload file does not exist. Double check that you have passed the file path as a parameter and the file exists." -ErrorAction Stop -} - -Set-ExecutionPolicy RemoteSigned -Force - -# Prepare materials from previous steps and runner environment variables -$appxUploadFilePath = $PSBoundParameters["appxPathParam"] -$username = $env:PartnerCenterClientId -$password = ConvertTo-SecureString $env:PartnerCenterClientSecret -AsPlainText -Force -$appStoreId = $env:PartnerCenterStoreId -$tenantId = $env:PartnerCenterTenantId - -# ********* Create temporary directory for submission artifacts ********* -$sbTempFolderPath = New-Item -Type Directory -Force -Path (Join-Path -Path 'D:\a\MediaFileManager\MediaFileManager\' -ChildPath 'SBTemp') - -# ********* Install StoreBroker and import PowerShell Module ********* -#git clone https://github.com/Microsoft/StoreBroker.git 'D:\a\MediaFileManager\MediaFileManager\SBGitRoot\' -#Import-Module -Force 'D:\a\MediaFileManager\MediaFileManager\SBGitRoot\StoreBroker' - -Set-PSRepository -Name "PSGallery" -InstallationPolicy Trusted -Install-Module -Name StoreBroker - -# ********* Authenticate Store Broker ********* -$cred = New-Object System.Management.Automation.PSCredential ($username, $password) -Set-StoreBrokerAuthentication -TenantId $tenantId -Credential $cred - -# ********* Prepare Submission Package ********* -$configFilePath = 'D:\a\MediaFileManager\MediaFileManager\.scripts\sbConfig.json' -New-SubmissionPackage -ConfigPath $configFilePath -AppxPath $appxUploadFilePath -OutPath $sbTempFolderPath -OutName 'submission' - -# ********* UPDATE & COMMIT SUBMISSION ********* -$submissionDataPath = Join-Path -Path $sbTempFolderPath -ChildPath 'submission.json' -$submissionPackagePath = Join-Path -Path $sbTempFolderPath -ChildPath 'submission.zip' - -Update-ApplicationSubmission -Verbose -ReplacePackages -AppId $appStoreId -SubmissionDataPath $submissionDataPath -PackagePath $submissionPackagePath -AutoCommit -Force -NoStatus diff --git a/scripts/SubmitTo-MicrosoftStore.ps1 b/scripts/SubmitTo-MicrosoftStore.ps1 new file mode 100644 index 000000000..f9dbec1f4 --- /dev/null +++ b/scripts/SubmitTo-MicrosoftStore.ps1 @@ -0,0 +1,30 @@ +# Copyright (c) 2024 0x5BFA +# Licensed under the MIT License. See the LICENSE. + +param( + [string]$SubmissionDirPath = "", + [string]$StoreBrokerConfigPath = "", + [string]$AppxPackagePath = "", + [string]$PartnerCenterClientId = "" + [string]$PartnerCenterClientSecret = "" + [string]$PartnerCenterStoreId = "" + [string]$PartnerCenterTenantId = "" +) + +Set-ExecutionPolicy RemoteSigned -Force +Set-PSRepository -Name "PSGallery" -InstallationPolicy Trusted +Install-Module -Name StoreBroker + +# Authenticate StoreBroker +$username = $env:PartnerCenterClientId +$password = ConvertTo-SecureString $env:PartnerCenterClientSecret -AsPlainText -Force +$cred = New-Object System.Management.Automation.PSCredential ($username, $password) +Set-StoreBrokerAuthentication -TenantId $PartnerCenterTenantId -Credential $cred + +# Prepare the submission package +New-SubmissionPackage -ConfigPath $StoreBrokerConfigPath -AppxPath $appxUploadFilePath -OutPath $SubmissionDirPath -OutName 'submission' +$SubmissionDataPath = Join-Path -Path $SubmissionDirPath -ChildPath 'submission.json' +$SubmissionPackagePath = Join-Path -Path $SubmissionDirPath -ChildPath 'submission.zip' + +# Upload the package +Update-ApplicationSubmission -Verbose -ReplacePackages -AppId $PartnerCenterStoreId -SubmissionDataPath $SubmissionDataPath -PackagePath $SubmissionPackagePath -AutoCommit -Force -NoStatus From 755400ec30b0ecf60f39aeb420df3382741e8428 Mon Sep 17 00:00:00 2001 From: 0x5BFA <62196528+0x5bfa@users.noreply.github.com> Date: Thu, 25 Jul 2024 13:31:20 +0900 Subject: [PATCH 03/15] Update SubmitTo-MicrosoftStore.ps1 --- scripts/SubmitTo-MicrosoftStore.ps1 | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/SubmitTo-MicrosoftStore.ps1 b/scripts/SubmitTo-MicrosoftStore.ps1 index f9dbec1f4..b139afce1 100644 --- a/scripts/SubmitTo-MicrosoftStore.ps1 +++ b/scripts/SubmitTo-MicrosoftStore.ps1 @@ -11,18 +11,19 @@ param( [string]$PartnerCenterTenantId = "" ) +# Setup environment Set-ExecutionPolicy RemoteSigned -Force Set-PSRepository -Name "PSGallery" -InstallationPolicy Trusted Install-Module -Name StoreBroker # Authenticate StoreBroker -$username = $env:PartnerCenterClientId -$password = ConvertTo-SecureString $env:PartnerCenterClientSecret -AsPlainText -Force +$username = $PartnerCenterClientId +$password = ConvertTo-SecureString $PartnerCenterClientSecret -AsPlainText -Force $cred = New-Object System.Management.Automation.PSCredential ($username, $password) Set-StoreBrokerAuthentication -TenantId $PartnerCenterTenantId -Credential $cred # Prepare the submission package -New-SubmissionPackage -ConfigPath $StoreBrokerConfigPath -AppxPath $appxUploadFilePath -OutPath $SubmissionDirPath -OutName 'submission' +New-SubmissionPackage -ConfigPath $StoreBrokerConfigPath -AppxPath $AppxPackagePath -OutPath $SubmissionDirPath -OutName 'submission' $SubmissionDataPath = Join-Path -Path $SubmissionDirPath -ChildPath 'submission.json' $SubmissionPackagePath = Join-Path -Path $SubmissionDirPath -ChildPath 'submission.zip' From c62f7138f8ca19a7079325743b98889155638af8 Mon Sep 17 00:00:00 2001 From: 0x5BFA <62196528+0x5bfa@users.noreply.github.com> Date: Thu, 25 Jul 2024 13:32:23 +0900 Subject: [PATCH 04/15] Update SubmitTo-MicrosoftStore.ps1 --- scripts/SubmitTo-MicrosoftStore.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/SubmitTo-MicrosoftStore.ps1 b/scripts/SubmitTo-MicrosoftStore.ps1 index b139afce1..ae20f0019 100644 --- a/scripts/SubmitTo-MicrosoftStore.ps1 +++ b/scripts/SubmitTo-MicrosoftStore.ps1 @@ -17,10 +17,10 @@ Set-PSRepository -Name "PSGallery" -InstallationPolicy Trusted Install-Module -Name StoreBroker # Authenticate StoreBroker -$username = $PartnerCenterClientId -$password = ConvertTo-SecureString $PartnerCenterClientSecret -AsPlainText -Force -$cred = New-Object System.Management.Automation.PSCredential ($username, $password) -Set-StoreBrokerAuthentication -TenantId $PartnerCenterTenantId -Credential $cred +$UserName = $PartnerCenterClientId +$Password = ConvertTo-SecureString $PartnerCenterClientSecret -AsPlainText -Force +$Credential = New-Object System.Management.Automation.PSCredential ($UserName, $Password) +Set-StoreBrokerAuthentication -TenantId $PartnerCenterTenantId -Credential $Credential # Prepare the submission package New-SubmissionPackage -ConfigPath $StoreBrokerConfigPath -AppxPath $AppxPackagePath -OutPath $SubmissionDirPath -OutName 'submission' From 3af75b04472baaaf3ea3e0b2e79e7f99737a266b Mon Sep 17 00:00:00 2001 From: 0x5BFA <62196528+0x5bfa@users.noreply.github.com> Date: Thu, 25 Jul 2024 16:00:44 +0900 Subject: [PATCH 05/15] Update SubmitTo-MicrosoftStore.ps1 --- scripts/SubmitTo-MicrosoftStore.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/SubmitTo-MicrosoftStore.ps1 b/scripts/SubmitTo-MicrosoftStore.ps1 index ae20f0019..06f124f78 100644 --- a/scripts/SubmitTo-MicrosoftStore.ps1 +++ b/scripts/SubmitTo-MicrosoftStore.ps1 @@ -11,14 +11,14 @@ param( [string]$PartnerCenterTenantId = "" ) -# Setup environment +# Setup Set-ExecutionPolicy RemoteSigned -Force Set-PSRepository -Name "PSGallery" -InstallationPolicy Trusted Install-Module -Name StoreBroker # Authenticate StoreBroker $UserName = $PartnerCenterClientId -$Password = ConvertTo-SecureString $PartnerCenterClientSecret -AsPlainText -Force +$Password = ConvertTo-SecureString $PartnerCenterClientSecret $Credential = New-Object System.Management.Automation.PSCredential ($UserName, $Password) Set-StoreBrokerAuthentication -TenantId $PartnerCenterTenantId -Credential $Credential From 51754035a3f0c4cd1cc7f64a7209f07fd38f920f Mon Sep 17 00:00:00 2001 From: 0x5BFA <62196528+0x5bfa@users.noreply.github.com> Date: Fri, 2 Aug 2024 22:13:55 +0900 Subject: [PATCH 06/15] Update cd-store.yml --- .github/workflows/cd-store.yml | 40 ++++++++++++++++++++++++---------- 1 file changed, 29 insertions(+), 11 deletions(-) diff --git a/.github/workflows/cd-store.yml b/.github/workflows/cd-store.yml index 6772952a5..32f0988c5 100644 --- a/.github/workflows/cd-store.yml +++ b/.github/workflows/cd-store.yml @@ -21,16 +21,18 @@ jobs: configuration: [Release] # Consider to use Store platform: [x64] env: - APPX_BUNDLE_PLATFORMS: 'x64|arm64' - CONFIGURATION: '${{ matrix.configuration }}' - PLATFORM: '${{ matrix.platform }}' - WORKING_DIR: '${{ github.workspace }}' # Default: 'D:\a\FluentHub\FluentHub' - SOLUTION_PATH: '${{ github.workspace }}\FluentHub.sln' - PACKAGE_PROJECT_DIR: '${{ github.workspace }}\src\FluentHub.Package' - PACKAGE_PROJECT_PATH: '${{ github.workspace }}\src\FluentHub.Package\FluentHub.Package.wapproj' - APP_CREDENTIALS_PATH: '${{ github.workspace }}\src\FluentHub.App\AppCredentials.config' - ARTIFACTS_STAGING_DIR: '${{ github.workspace }}\artifacts' - APPX_PACKAGE_DIR: '${{ github.workspace }}\artifacts\AppxPackages' + APPX_BUNDLE_PLATFORMS: 'x64|arm64' + CONFIGURATION: '${{ matrix.configuration }}' + PLATFORM: '${{ matrix.platform }}' + WORKING_DIR: '${{ github.workspace }}' # Default: 'D:\a\FluentHub\FluentHub' + SOLUTION_PATH: '${{ github.workspace }}\FluentHub.sln' + PACKAGE_PROJECT_DIR: '${{ github.workspace }}\src\FluentHub.Package' + PACKAGE_PROJECT_PATH: '${{ github.workspace }}\src\FluentHub.Package\FluentHub.Package.wapproj' + APP_CREDENTIALS_PATH: '${{ github.workspace }}\src\FluentHub.App\AppCredentials.config' + ARTIFACTS_STAGING_DIR: '${{ github.workspace }}\artifacts' + APPX_PACKAGE_DIR: '${{ github.workspace }}\artifacts\AppxPackages' + STORE_BROKER_STAGING_DIR: '${{ github.workspace }}\.configurations\MicrosoftStore\submission' + STORE_BROKER_CONFI_FILE_PATH: '${{ github.workspace }}\.configurations\MicrosoftStore\sbconfig.json' steps: @@ -83,4 +85,20 @@ jobs: uses: actions/upload-artifact@v4 with: name: 'Appx Packages (${{ env.CONFIGURATION }}, ${{ env.PLATFORM }})' - path: ${{ env.ARTIFACTS_STAGING_DIR }} \ No newline at end of file + path: ${{ env.ARTIFACTS_STAGING_DIR }} + + - name: Publish to Microsoft Store + shell: pwsh + run: | + . './scripts/SubmitTo-MicrosoftStore.ps1' ` + -SubmissionDirPath=$env:STORE_BROKER_STAGING_DIR ` + -BrokerConfigPath=$env:STORE_BROKER_CONFI_FILE_PATH ` + -AppxPackagePath=$env:ARTIFACTS_STAGING_DIR ` + -PartnerCenterClientId=$env:PARTNER_CENTER_CLIENT_ID ` + -PartnerCenterClientSecret=$env:PARTNER_CENTER_CLIENT_SECRET ` + -PartnerCenterStoreId=9NKB9HX8RJZ3 ` + -PartnerCenterTenantId=$env:PARTNER_CENTER_TENANT_ID + env: + PARTNER_CENTER_CLIENT_ID: ${{ secrets.PARTNER_CENTER_CLIENT_ID }} + PARTNER_CENTER_CLIENT_SECRET: ${{ secrets.PARTNER_CENTER_CLIENT_SECRET }} + PARTNER_CENTER_TENANT_ID: ${{ secrets.PARTNER_CENTER_TENANT_ID }} From e60519d8519e2b93b55182cdf86c34a3e99bf53d Mon Sep 17 00:00:00 2001 From: 0x5BFA <62196528+0x5bfa@users.noreply.github.com> Date: Fri, 2 Aug 2024 22:14:52 +0900 Subject: [PATCH 07/15] Create sbconfig.json --- .configurations/MicrosoftStore/sbconfig.json | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .configurations/MicrosoftStore/sbconfig.json diff --git a/.configurations/MicrosoftStore/sbconfig.json b/.configurations/MicrosoftStore/sbconfig.json new file mode 100644 index 000000000..2c63c0851 --- /dev/null +++ b/.configurations/MicrosoftStore/sbconfig.json @@ -0,0 +1,2 @@ +{ +} From 1fef62cfadbe379e2fbee13d88089d933dd1c294 Mon Sep 17 00:00:00 2001 From: 0x5BFA <62196528+0x5bfa@users.noreply.github.com> Date: Fri, 2 Aug 2024 23:12:32 +0900 Subject: [PATCH 08/15] Rename .configurations/MicrosoftStore/sbconfig.json to .github/configurations/MicrosoftStore/config.json --- .../configurations/MicrosoftStore/config.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .configurations/MicrosoftStore/sbconfig.json => .github/configurations/MicrosoftStore/config.json (100%) diff --git a/.configurations/MicrosoftStore/sbconfig.json b/.github/configurations/MicrosoftStore/config.json similarity index 100% rename from .configurations/MicrosoftStore/sbconfig.json rename to .github/configurations/MicrosoftStore/config.json From d9fc14ee66e81cba2be782b2a5e8f460e8a2ee90 Mon Sep 17 00:00:00 2001 From: 0x5BFA <62196528+0x5bfa@users.noreply.github.com> Date: Fri, 2 Aug 2024 23:13:11 +0900 Subject: [PATCH 09/15] Update cd-store.yml --- .github/workflows/cd-store.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd-store.yml b/.github/workflows/cd-store.yml index 32f0988c5..ae58b4e04 100644 --- a/.github/workflows/cd-store.yml +++ b/.github/workflows/cd-store.yml @@ -31,8 +31,8 @@ jobs: APP_CREDENTIALS_PATH: '${{ github.workspace }}\src\FluentHub.App\AppCredentials.config' ARTIFACTS_STAGING_DIR: '${{ github.workspace }}\artifacts' APPX_PACKAGE_DIR: '${{ github.workspace }}\artifacts\AppxPackages' - STORE_BROKER_STAGING_DIR: '${{ github.workspace }}\.configurations\MicrosoftStore\submission' - STORE_BROKER_CONFI_FILE_PATH: '${{ github.workspace }}\.configurations\MicrosoftStore\sbconfig.json' + STORE_BROKER_STAGING_DIR: '${{ github.workspace }}\.github\configurations\MicrosoftStore\submission' + STORE_BROKER_CONFI_FILE_PATH: '${{ github.workspace }}\.github\configurations\MicrosoftStore\config.json' steps: From 4e1aca1aadbb798df69a307490059890a869740f Mon Sep 17 00:00:00 2001 From: 0x5BFA <62196528+0x5bfa@users.noreply.github.com> Date: Fri, 2 Aug 2024 23:13:34 +0900 Subject: [PATCH 10/15] Update SubmitTo-MicrosoftStore.ps1 --- scripts/SubmitTo-MicrosoftStore.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/SubmitTo-MicrosoftStore.ps1 b/scripts/SubmitTo-MicrosoftStore.ps1 index 06f124f78..20b79023d 100644 --- a/scripts/SubmitTo-MicrosoftStore.ps1 +++ b/scripts/SubmitTo-MicrosoftStore.ps1 @@ -5,10 +5,10 @@ param( [string]$SubmissionDirPath = "", [string]$StoreBrokerConfigPath = "", [string]$AppxPackagePath = "", - [string]$PartnerCenterClientId = "" - [string]$PartnerCenterClientSecret = "" - [string]$PartnerCenterStoreId = "" - [string]$PartnerCenterTenantId = "" + [string]$PartnerCenterClientId = "", + [string]$PartnerCenterClientSecret = "", + [string]$PartnerCenterStoreId = "", + [string]$PartnerCenterTenantId = "", ) # Setup From 54d9724636bc3c4ac7adaebd8c1deb3c03e2a4d9 Mon Sep 17 00:00:00 2001 From: 0x5BFA <62196528+0x5bfa@users.noreply.github.com> Date: Fri, 2 Aug 2024 23:13:58 +0900 Subject: [PATCH 11/15] Update SubmitTo-MicrosoftStore.ps1 --- scripts/SubmitTo-MicrosoftStore.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/SubmitTo-MicrosoftStore.ps1 b/scripts/SubmitTo-MicrosoftStore.ps1 index 20b79023d..4fc21375b 100644 --- a/scripts/SubmitTo-MicrosoftStore.ps1 +++ b/scripts/SubmitTo-MicrosoftStore.ps1 @@ -8,7 +8,7 @@ param( [string]$PartnerCenterClientId = "", [string]$PartnerCenterClientSecret = "", [string]$PartnerCenterStoreId = "", - [string]$PartnerCenterTenantId = "", + [string]$PartnerCenterTenantId = "" ) # Setup From 8fe87a8cae63f004dfd762ba0bbeed7fe3858569 Mon Sep 17 00:00:00 2001 From: 0x5BFA <62196528+0x5bfa@users.noreply.github.com> Date: Sat, 3 Aug 2024 08:33:22 +0900 Subject: [PATCH 12/15] Create devcontainer.json --- .devcontainer/devcontainer.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..1aa8d473e --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,6 @@ +{ + "image": "mcr.microsoft.com/devcontainers/universal:2", + "features": { + "ghcr.io/devcontainers/features/powershell:1": {} + } +} From e7aa8935bc399fc090da65fa0074d176150c5872 Mon Sep 17 00:00:00 2001 From: 0x5BFA <62196528+0x5bfa@users.noreply.github.com> Date: Sat, 3 Aug 2024 08:41:10 +0900 Subject: [PATCH 13/15] Delete .devcontainer directory --- .devcontainer/devcontainer.json | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json deleted file mode 100644 index 1aa8d473e..000000000 --- a/.devcontainer/devcontainer.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "image": "mcr.microsoft.com/devcontainers/universal:2", - "features": { - "ghcr.io/devcontainers/features/powershell:1": {} - } -} From 2ca6625946f2fdacc6b419023840b74c6655a8fb Mon Sep 17 00:00:00 2001 From: 0x5BFA <62196528+0x5bfa@users.noreply.github.com> Date: Tue, 6 Aug 2024 09:45:00 +0900 Subject: [PATCH 14/15] Delete .github/configurations/MicrosoftStore/config.json --- .github/configurations/MicrosoftStore/config.json | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 .github/configurations/MicrosoftStore/config.json diff --git a/.github/configurations/MicrosoftStore/config.json b/.github/configurations/MicrosoftStore/config.json deleted file mode 100644 index 2c63c0851..000000000 --- a/.github/configurations/MicrosoftStore/config.json +++ /dev/null @@ -1,2 +0,0 @@ -{ -} From b691e4bc2bca381794da281487ca97d01a575529 Mon Sep 17 00:00:00 2001 From: 0x5BFA <62196528+0x5bfa@users.noreply.github.com> Date: Tue, 6 Aug 2024 09:46:39 +0900 Subject: [PATCH 15/15] Update cd-store.yml --- .github/workflows/cd-store.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd-store.yml b/.github/workflows/cd-store.yml index ae58b4e04..a09c4653c 100644 --- a/.github/workflows/cd-store.yml +++ b/.github/workflows/cd-store.yml @@ -32,7 +32,7 @@ jobs: ARTIFACTS_STAGING_DIR: '${{ github.workspace }}\artifacts' APPX_PACKAGE_DIR: '${{ github.workspace }}\artifacts\AppxPackages' STORE_BROKER_STAGING_DIR: '${{ github.workspace }}\.github\configurations\MicrosoftStore\submission' - STORE_BROKER_CONFI_FILE_PATH: '${{ github.workspace }}\.github\configurations\MicrosoftStore\config.json' + STORE_BROKER_CONFIG_PATH: '${{ github.workspace }}\.github\configurations\MicrosoftStore\config.json' steps: @@ -92,7 +92,7 @@ jobs: run: | . './scripts/SubmitTo-MicrosoftStore.ps1' ` -SubmissionDirPath=$env:STORE_BROKER_STAGING_DIR ` - -BrokerConfigPath=$env:STORE_BROKER_CONFI_FILE_PATH ` + -BrokerConfigPath=$env:STORE_BROKER_CONFIG_PATH ` -AppxPackagePath=$env:ARTIFACTS_STAGING_DIR ` -PartnerCenterClientId=$env:PARTNER_CENTER_CLIENT_ID ` -PartnerCenterClientSecret=$env:PARTNER_CENTER_CLIENT_SECRET `