Use the correct runner for x64 #19
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| push: | |
| tags: | |
| - '**' | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| # macos-15-large is for the x64 (intel) architecture | |
| # https://github.com/actions/runner-images?tab=readme-ov-file#available-images | |
| os: [ macos-15-large, macos-latest ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # TODO: replace this once https://github.com/actions/setup-java/pull/637 gets merged. | |
| - uses: gmitch215/setup-java@6d2c5e1f82f180ae79f799f0ed6e3e5efb4e664d | |
| with: | |
| distribution: 'jetbrains' | |
| java-version: 17 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: gradle/actions/setup-gradle@v3 | |
| - run: ./gradlew build | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: distribution-${{ matrix.os }} | |
| if-no-files-found: error | |
| path: | | |
| build/compose/binaries/main-release/dmg/kotlin-explorer-*.dmg | |
| release: | |
| runs-on: ubuntu-latest | |
| if: github.repository_owner == 'romainguy' | |
| needs: build | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/download-artifact@v4 | |
| - name: Create release and upload dists | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| gh release create "${{ github.ref_name }}" **/*.dmg -t "${{ github.ref_name }}" --draft --generate-notes |