You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
705 B
30 lines
705 B
name: Publish macOS binaries
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- v0.*
|
|
- v0.*.*
|
|
- v1.*
|
|
- v1.*.*
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up JDK 14
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 14
|
|
- name: Build with Gradle
|
|
run: ./gradlew jpackageZip
|
|
- name: Create Release
|
|
uses: ncipollo/[email protected]
|
|
id: create_release
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
allowUpdates: true
|
|
replaceArtifacts: false
|
|
body: Fully automated release
|
|
artifacts: "./build/distributions/openrndr-application-macos.zip"
|