From fa1ed0d2e3ff81998ee4e6b16eadbc5bb0c91820 Mon Sep 17 00:00:00 2001 From: Johannes Millan Date: Sun, 22 Jun 2025 18:01:52 +0200 Subject: [PATCH] build: remove to avoid failure --- .../auto-publish-windows-store-on-release.yml | 40 ------------------- 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/auto-publish-windows-store-on-release.yml diff --git a/.github/workflows/auto-publish-windows-store-on-release.yml b/.github/workflows/auto-publish-windows-store-on-release.yml deleted file mode 100644 index 57a721bbf4..0000000000 --- a/.github/workflows/auto-publish-windows-store-on-release.yml +++ /dev/null @@ -1,40 +0,0 @@ -#name: Auto Publish to Microsoft Store on Release -# -#on: -# release: -# types: [published] -# -#jobs: -# auto-publish-windows-store: -# runs-on: ubuntu-latest -# -# # Only run for actual releases, not pre-releases -# if: '!github.event.release.prerelease' -# -# steps: -# - name: Download Windows Store artifacts -# uses: dawidd6/action-download-artifact@v3 -# with: -# github_token: ${{ secrets.GITHUB_TOKEN }} -# workflow: build-create-windows-store-on-release.yml -# name: WinStoreRelease -# path: downloads -# search_artifacts: true -# -# - name: Submit to Microsoft Store for Review -# uses: isaacrlevin/windows-store-action@1.0 -# with: -# tenant-id: ${{ secrets.AZURE_AD_TENANT_ID }} -# client-id: ${{ secrets.AZURE_AD_CLIENT_ID }} -# client-secret: ${{ secrets.AZURE_AD_CLIENT_SECRET }} -# app-id: ${{ secrets.MICROSOFT_STORE_APP_ID }} -# package-path: 'downloads/*.appx' -# skip-polling: false -# delete-pending-submission: true -# -# - name: Notify submission result -# if: success() -# run: | -# echo "✅ Windows Store submission completed successfully" -# echo "📦 Package submitted for Microsoft Store review" -# echo "🏷️ Release: ${{ github.event.release.tag_name }}"