Commit 468c9fe1f for imagemagick.org

commit 468c9fe1f82f4c9b854839ebc1610bcbd7ff6fad
Author: Dirk Lemstra <dirk@lemstra.org>
Date:   Tue Apr 21 21:52:00 2026 +0200

    Added an extra job to sync the winget repository during the release.

diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 65e5cf9e7..a4a322c6b 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -627,11 +627,22 @@ jobs:
             ${{github.workspace}}/artifacts/*.AppImage \
             ${{github.workspace}}/multiple.intoto.jsonl

+  prepare_msix:
+    name: Prepare Msix
+    runs-on: ubuntu-24.04
+
+    steps:
+      - name: Sync forked winget-pkgs repository
+        env:
+          GH_TOKEN: ${{secrets.WINGET_TOKEN}}
+        run: gh repo sync dlemstra/winget-pkgs --source microsoft/winget-pkgs
+
   release_msix:
     name: Publish Msix ${{matrix.quantum}}${{matrix.hdri_flag}}
     needs:
       - version
       - release
+      - prepare_msix
     runs-on: windows-2025

     strategy: