@@ -135,61 +135,58 @@ jobs:
135135 tag : ${{ github.ref_name }}
136136 prerelease : ${{ contains(github.ref_name, '-') }}
137137
138- store :
139- needs : [build, release]
140- runs-on : windows-latest
141- if : ${{ !contains(github.ref_name, '-') }} # Skip for pre-releases
142-
143- steps :
144- - name : Checkout
145- uses : actions/checkout@v4
146-
147- - name : Download MSIX artifacts
148- uses : actions/download-artifact@v4
149- with :
150- pattern : msix-*
151- path : msix-packages
152- merge-multiple : true
153-
154- - name : List MSIX packages
155- shell : pwsh
156- run : Get-ChildItem -Path msix-packages -Recurse
157-
158- - name : Submit to Microsoft Store
159- uses : microsoft/store-submission@v1
160- with :
161- command : publish
162- productId : ${{ secrets.STORE_PRODUCT_ID }}
163- tenantId : ${{ secrets.AZURE_TENANT_ID }}
164- clientId : ${{ secrets.AZURE_CLIENT_ID }}
165- clientSecret : ${{ secrets.AZURE_CLIENT_SECRET }}
166- packagePath : msix-packages/
138+ # TODO: Enable Microsoft Store submission once secrets are configured
139+ # store:
140+ # needs: [build, release]
141+ # runs-on: windows-latest
142+ # if: ${{ !contains(github.ref_name, '-') }} # Skip for pre-releases
143+ #
144+ # steps:
145+ # - name: Checkout
146+ # uses: actions/checkout@v4
147+ #
148+ # - name: Download MSIX artifacts
149+ # uses: actions/download-artifact@v4
150+ # with:
151+ # pattern: msix-*
152+ # path: msix-packages
153+ # merge-multiple: true
154+ #
155+ # - name: List MSIX packages
156+ # shell: pwsh
157+ # run: Get-ChildItem -Path msix-packages -Recurse
158+ #
159+ # - name: Submit to Microsoft Store
160+ # uses: microsoft/store-submission@v1
161+ # with:
162+ # command: publish
163+ # productId: ${{ secrets.STORE_PRODUCT_ID }}
164+ # tenantId: ${{ secrets.AZURE_TENANT_ID }}
165+ # clientId: ${{ secrets.AZURE_CLIENT_ID }}
166+ # clientSecret: ${{ secrets.AZURE_CLIENT_SECRET }}
167+ # packagePath: msix-packages/
167168
168169 notify-bluesky :
169- needs : [release, store ]
170+ needs : [release]
170171 if : ${{ !contains(github.ref_name, '-') }}
171172 uses : CodingWithCalvin/.github/.github/workflows/bluesky-post.yml@main
172173 with :
173174 post_text : |
174175 🚀 VSToolbox v${{ needs.release.outputs.version }} has been released!
175176
176177 [Check out the release notes here!](https://github.com/${{ github.repository }}/releases/tag/${{ github.ref_name }})
177-
178- Get it from the Microsoft Store or download directly from GitHub!
179178 secrets :
180179 BLUESKY_USERNAME : ${{ secrets.BLUESKY_USERNAME }}
181180 BLUESKY_APP_PASSWORD : ${{ secrets.BLUESKY_APP_PASSWORD }}
182181
183182 notify-linkedin :
184- needs : [release, store ]
183+ needs : [release]
185184 if : ${{ !contains(github.ref_name, '-') }}
186185 uses : CodingWithCalvin/.github/.github/workflows/linkedin-post.yml@main
187186 with :
188187 post_text : |
189188 🚀 VSToolbox v${{ needs.release.outputs.version }} has been released!
190189
191190 Check out the release notes here: https://github.com/${{ github.repository }}/releases/tag/${{ github.ref_name }}
192-
193- Get it from the Microsoft Store or download directly from GitHub!
194191 secrets :
195192 LINKEDIN_ACCESS_TOKEN : ${{ secrets.LINKEDIN_ACCESS_TOKEN }}
0 commit comments