Skip to content

Binary Release

Binary Release #16

name: Binary Release
on:
workflow_dispatch:
inputs:
mlton-version:
required: true
type: string
workflow_call:
inputs:
mlton-version:
required: true
type: string
jobs:
binary-release:
strategy:
fail-fast: false
matrix:
include:
- runner: "ubuntu-24.04"
binary-release-suffix: ""
- runner: "macos-13"
binary-release-suffix: ""
- runner: "macos-14"
binary-release-suffix: ""
- runner: "windows-2022"
binary-release-suffix: ""
defaults:
run:
shell: ${{ (startsWith(matrix.runner, 'windows') && 'msys2 {0}') || 'bash' }}
uses: ./.github/workflows/binary-release-single.yml

Check failure on line 34 in .github/workflows/binary-release.yml

View workflow run for this annotation

GitHub Actions / Binary Release

Invalid workflow file

The workflow is not valid. .github/workflows/binary-release.yml (Line: 34, Col: 5): Unexpected value 'uses' .github/workflows/binary-release.yml (Line: 35, Col: 5): Unexpected value 'with'
with:
mlton-version: ${{ inputs.mlton-version }}
runner: ${{ matrix.runner }}
binary-release-suffix: ${{ matrix.binary-release-suffix }}
secrets: inherit