Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Commit

Permalink
Fixed small typos on windows deployment yaml. (#935)
Browse files Browse the repository at this point in the history
## 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.
  • Loading branch information
azchohfi authored Apr 26, 2023
1 parent c591b05 commit 37ff3cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release_deploy_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 37ff3cc

Please sign in to comment.