diff --git a/.github/workflows/release-all.yml b/.github/workflows/release-all.yml index 7e0fdef..5699b51 100644 --- a/.github/workflows/release-all.yml +++ b/.github/workflows/release-all.yml @@ -1,28 +1,31 @@ -name: Create All Releases - -on: - workflow_dispatch: - inputs: - version: - description: 'Version name for the release (e.g., 1.0.0)' - required: true - type: string - -jobs: - release-windows: - uses: ./.github/workflows/build-windows.yml - with: - version: ${{ inputs.version }} - secrets: inherit - - release-linux: - uses: ./.github/workflows/build-linux.yml - with: - version: ${{ inputs.version }} - secrets: inherit - - release-macos: - uses: ./.github/workflows/build-macos.yml - with: - version: ${{ inputs.version }} - secrets: inherit +name: Create All Releases + +on: + workflow_dispatch: + inputs: + version: + description: 'Version name for the release (e.g., 1.0.0)' + required: true + type: string + +permissions: + contents: write + +jobs: + release-windows: + uses: ./.github/workflows/build-windows.yml + with: + version: ${{ inputs.version }} + secrets: inherit + + release-linux: + uses: ./.github/workflows/build-linux.yml + with: + version: ${{ inputs.version }} + secrets: inherit + + release-macos: + uses: ./.github/workflows/build-macos.yml + with: + version: ${{ inputs.version }} + secrets: inherit