From 6d58db0c837ca0bac9f877110c01bd26d9a17d53 Mon Sep 17 00:00:00 2001 From: Ryosuke Asano Date: Thu, 5 Oct 2023 00:32:44 +0900 Subject: [PATCH] [FB] Workflow | Add x86 deployment --- .github/workflows/deployments.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/deployments.yml b/.github/workflows/deployments.yml index 4d07525ed440f..ece58eb964f23 100644 --- a/.github/workflows/deployments.yml +++ b/.github/workflows/deployments.yml @@ -444,6 +444,24 @@ jobs: } }' + - name: Run GitHub Actions for Release x86 Windows MAR "Floorp-Projects/Floorp-Update" 🚀 + run: | + echo "Preparing to run GitHub Actions for Release x86 Windows MAR, waiting for 30 seconds" + sleep 60 + curl -X POST \ + -H "Authorization: token ${{ secrets.PAT }}" \ + -H "Accept: application/vnd.github.v3+json" \ + "https://api.github.com/repos/Floorp-Projects/Floorp-Updates/actions/workflows/deliver-updates-to-floorp-browser.yml/dispatches" \ + -d '{ + "ref": "main", + "inputs": { + "mar-url": "https://github.com/${{ github.repository }}/releases/download/v${{ needs.get-display-version.outputs.display-version }}/WINNT-x86.mar", + "os": "WINNT", + "arch": "x86", + "release-note-url": "${{ inputs.release-note-url }}" + } + }' + - name: Run GitHub Actions for Release x86_64 Debian PPA Build 🚀 run: | curl -X POST \