Edwin Jakobs
5 years ago
6 changed files with 157 additions and 24 deletions
@ -0,0 +1,30 @@ |
|||||
|
name: Publish Linux/x64 binaries |
||||
|
|
||||
|
on: |
||||
|
push: |
||||
|
tags: |
||||
|
- v0.* |
||||
|
- v0.*.* |
||||
|
- v1.* |
||||
|
- v1.*.* |
||||
|
|
||||
|
jobs: |
||||
|
build: |
||||
|
runs-on: ubuntu-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-linux-x64.zip" |
@ -0,0 +1,30 @@ |
|||||
|
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" |
@ -0,0 +1,30 @@ |
|||||
|
name: Publish Windows binaries |
||||
|
|
||||
|
on: |
||||
|
push: |
||||
|
tags: |
||||
|
- v0.* |
||||
|
- v0.*.* |
||||
|
- v1.* |
||||
|
- v1.*.* |
||||
|
- |
||||
|
jobs: |
||||
|
build: |
||||
|
runs-on: windows-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-windows.zip" |
Loading…
Reference in new issue