# microsoft-store-apppublisher **Repository Path**: mirrors_microsoft/microsoft-store-apppublisher ## Basic Information - **Project Name**: microsoft-store-apppublisher - **Description**: A GitHub Action to facilitate configuring MSStoreCLI in the workflow PATH. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-19 - **Last Updated**: 2026-07-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README
# Setup MSStore Developer CLI This repository contains the source code for the `microsoft-store-apppublisher` GitHub Action as well as the `microsoft-store-apppublisher` Azure DevOps extension. This action/extension sets up the [MSStore Developer CLI](https://github.com/microsoft/msstore-cli) on a runner/agent. The MSStore Developer CLI is a command line interface that allows you to manage your Microsoft Store apps and in-app products. Example (GitHub Action): ```yaml name: MSStore CLI on: [push] jobs: build: runs-on: windows-latest steps: - uses: actions/checkout@v5 - uses: microsoft/microsoft-store-apppublisher@v1.2 - run: msstore reconfigure --tenantId ${{ secrets.PARTNER_CENTER_TENANT_ID }} --sellerId ${{ secrets.PARTNER_CENTER_SELLER_ID }} --clientId ${{ secrets.PARTNER_CENTER_CLIENT_ID }} --clientSecret ${{ secrets.PARTNER_CENTER_CLIENT_SECRET }} - run: msstore apps list ``` Example (Azure DevOps extension): ```yaml name: MSStore CLI trigger: - main pool: vmImage: 'windows-latest' steps: - checkout: self - task: UseMSStoreCLI@0 - script: msstore reconfigure --tenantId $(PARTNER_CENTER_TENANT_ID) --sellerId $(PARTNER_CENTER_SELLER_ID) --clientId $(PARTNER_CENTER_CLIENT_ID) --clientSecret $(PARTNER_CENTER_CLIENT_SECRET) - script: msstore apps list ```