Skip to content

Commit

Permalink
Added (unsigned) build for mac
Browse files Browse the repository at this point in the history
  • Loading branch information
MichelHartmann committed May 11, 2021
1 parent b7cfddb commit ffdc2e9
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,33 @@ on:
- '*'

jobs:
macos-build:
runs-on: macos-latest
steps:
- name: Setup JDK 11
uses: actions/setup-java@v1
with:
java-version: 11

- name: Check out sources...
uses: actions/checkout@v2

- name: Build with Gradle
run: ./gradlew createDmg -PprojectVersion=%GITHUB_REF:*tags/=%

- name: Upload binaries to release
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: build/distributions/*.dmg
tag: ${{ github.ref }}
overwrite: true
file_glob: true

windows-build:
runs-on: windows-latest
steps:
- name: Set up JDK 11
- name: Setup JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
Expand Down

0 comments on commit ffdc2e9

Please sign in to comment.