chore(ci): define forge platform at workflow level

This commit is contained in:
Elian Doran 2025-03-23 21:14:51 +02:00
parent 98013bc725
commit c477e728ea
No known key found for this signature in database
2 changed files with 4 additions and 10 deletions

View File

@ -11,6 +11,8 @@ inputs:
extension:
description: "Platform specific extensions to copy in the output: dmg, deb, rpm, exe, zip"
required: true
forge_platform:
required: true
runs:
using: composite
@ -78,18 +80,9 @@ runs:
APPLE_ID: ${{ env.APPLE_ID }}
APPLE_ID_PASSWORD: ${{ env.APPLE_ID_PASSWORD }}
run: |
# Map OS names to Electron Forge platform names
if [ "${{ inputs.os }}" = "macos" ]; then
PLATFORM="darwin"
elif [ "${{ inputs.os }}" = "windows" ]; then
PLATFORM="win32"
else
PLATFORM="${{ inputs.os }}"
fi
npm run electron-forge:make -- \
--arch=${{ inputs.arch }} \
--platform=$PLATFORM
--platform=${{ inputs.forge_platform }}
# Add DMG signing step
- name: Sign DMG

View File

@ -25,6 +25,7 @@ jobs:
- name: windows
image: windows-latest
extension: [exe, zip]
forge_platform: win32
runs-on: ${{ matrix.os.image }}
steps:
- uses: actions/checkout@v4