From 37ff3cc72abbe1ad9a2b069358cec6c6d5f92c90 Mon Sep 17 00:00:00 2001 From: Alexandre Zollinger Chohfi Date: Wed, 26 Apr 2023 04:37:23 -0700 Subject: [PATCH] Fixed small typos on windows deployment yaml. (#935) ## Description Very small typo fix. Secret name was mistyped, and the dot (".") is not required, as the Store CLI uses the current directory by default. --- .github/workflows/release_deploy_windows.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release_deploy_windows.yml b/.github/workflows/release_deploy_windows.yml index 04995d547b..e3fe743f4d 100644 --- a/.github/workflows/release_deploy_windows.yml +++ b/.github/workflows/release_deploy_windows.yml @@ -15,13 +15,13 @@ jobs: # Instructions on obtaining these secrets can be found at https://github.com/marketplace/actions/windows-store-publish#obtaining-your-credentials - name: Configure MS CLI - run: msstore reconfigure --tenantId ${{ secrets.AZURE_AD_TENANT_ID }} --clientId ${{ secrets.AZURE_AD_ClIENT_ID }} --clientSecret ${{ secrets.AZURE_AD_CLIENT_SECRET }} --sellerId ${{ secrets.SELLER_ID }} + run: msstore reconfigure --tenantId ${{ secrets.AZURE_AD_TENANT_ID }} --clientId ${{ secrets.AZURE_AD_CLIENT_ID }} --clientSecret ${{ secrets.AZURE_AD_CLIENT_SECRET }} --sellerId ${{ secrets.SELLER_ID }} - name: Install dependencies - run: dart pub get + run: flutter pub get - name: Create MSIX package - run: msstore package . + run: msstore package - name: Publish MSIX to the Microsoft Store run: msstore publish -v