diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 270ba0c..3b8081d 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -10,17 +10,26 @@ jobs: strategy: matrix: os: - - ubuntu-latest - ubuntu-latest - windows-latest - macos-latest - - macos-latest platforms: - linux - android - windows - ios - macos + include: + - os: ubuntu-latest + platforms: linux + - os: ubuntu-latest + platforms: android + - os: windows-latest + platforms: windows + - os: macos-latest + platforms: ios + - os: macos-latest + platforms: macos runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3