Ensure all workflows run on pull requests #123
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 CLI | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build-cli: | |
| strategy: | |
| matrix: | |
| include: | |
| - arch: linux-amd64 | |
| runs-on: ubuntu-latest | |
| - arch: linux-arm64 | |
| runs-on: arm-c8 | |
| - arch: macos-amd64 | |
| runs-on: macos-latest | |
| - arch: macos-arm64 | |
| runs-on: macos-latest-xlarge | |
| runs-on: ${{ matrix.runs-on }} | |
| steps: | |
| - name: Checkout git repo | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Fetch Tags | |
| run: git fetch --tags origin | |
| - name: Setup Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: 25 | |
| cache: 'maven' | |
| cache-dependency-path: '**/deps.edn' | |
| - uses: graalvm/setup-graalvm@v1 | |
| with: | |
| java-version: '25' | |
| distribution: 'graalvm' | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: extractions/setup-just@v2 | |
| - uses: DeLaGuardo/setup-clojure@12.5 | |
| with: | |
| cli: latest | |
| - name: Build | |
| run: | | |
| just build-native-cli | |
| - name: Pack binary | |
| run: | | |
| tar -czf kmono-${{ matrix.arch }}.tar.gz -C ./target/bin kmono | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: binaries-${{ matrix.arch }} | |
| if-no-files-found: error | |
| path: kmono-${{ matrix.arch }}.tar.gz | |
| release-cli: | |
| runs-on: ubuntu-latest | |
| needs: [build-cli] | |
| if: ${{ github.ref_type == 'tag' && startsWith(github.ref_name, 'v') }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Download Binary Artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| merge-multiple: true | |
| pattern: binaries-* | |
| path: bin | |
| - name: Calculate checksums | |
| run: | | |
| for file in bin/*; do | |
| shasum -a 256 "$file" >> checksums.txt | |
| done | |
| mv checksums.txt bin/checksums.txt | |
| - name: Release | |
| uses: softprops/action-gh-release@v2 | |
| if: startsWith(github.ref, 'refs/tags/') | |
| with: | |
| files: | | |
| bin/* |