Sync with the beta branch

This commit is contained in:
Mohamed
2026-01-17 22:06:10 +02:00
committed by GitHub
parent 07e3525042
commit 1e5157bbad
+31 -28
View File
@@ -1,28 +1,31 @@
name: Create All Releases name: Create All Releases
on: on:
workflow_dispatch: workflow_dispatch:
inputs: inputs:
version: version:
description: 'Version name for the release (e.g., 1.0.0)' description: 'Version name for the release (e.g., 1.0.0)'
required: true required: true
type: string type: string
jobs: permissions:
release-windows: contents: write
uses: ./.github/workflows/build-windows.yml
with: jobs:
version: ${{ inputs.version }} release-windows:
secrets: inherit uses: ./.github/workflows/build-windows.yml
with:
release-linux: version: ${{ inputs.version }}
uses: ./.github/workflows/build-linux.yml secrets: inherit
with:
version: ${{ inputs.version }} release-linux:
secrets: inherit uses: ./.github/workflows/build-linux.yml
with:
release-macos: version: ${{ inputs.version }}
uses: ./.github/workflows/build-macos.yml secrets: inherit
with:
version: ${{ inputs.version }} release-macos:
secrets: inherit uses: ./.github/workflows/build-macos.yml
with:
version: ${{ inputs.version }}
secrets: inherit