Edwin Jakobs
2 years ago
5 changed files with 18 additions and 12 deletions
@ -13,14 +13,16 @@ jobs: |
|||
runs-on: ubuntu-latest |
|||
steps: |
|||
- uses: actions/checkout@v2 |
|||
- name: Set up JDK 14 |
|||
- name: Set up JDK 17 |
|||
uses: actions/setup-java@v1 |
|||
with: |
|||
java-version: 14 |
|||
java-version: 17 |
|||
- name: Build with Gradle |
|||
run: ./gradlew jpackageZip |
|||
- name: Rename jpackage zip |
|||
run: mv ./build/distributions/openrndr-application.zip ./build/distributions/openrndr-application-linux-x64.zip |
|||
- name: Create Release |
|||
uses: ncipollo/[email protected] |
|||
uses: ncipollo/release-action@v1.12.0 |
|||
id: create_release |
|||
with: |
|||
token: ${{ secrets.GITHUB_TOKEN }} |
|||
|
@ -13,14 +13,16 @@ jobs: |
|||
runs-on: macos-latest |
|||
steps: |
|||
- uses: actions/checkout@v2 |
|||
- name: Set up JDK 14 |
|||
- name: Set up JDK 17 |
|||
uses: actions/setup-java@v1 |
|||
with: |
|||
java-version: 14 |
|||
java-version: 17 |
|||
- name: Build with Gradle |
|||
run: ./gradlew jpackageZip |
|||
- name: Rename jpackage zip |
|||
run: mv ./build/distributions/openrndr-application.zip ./build/distributions/openrndr-application-macos.zip |
|||
- name: Create Release |
|||
uses: ncipollo/[email protected] |
|||
uses: ncipollo/release-action@v1.12.0 |
|||
id: create_release |
|||
with: |
|||
token: ${{ secrets.GITHUB_TOKEN }} |
|||
|
@ -13,14 +13,16 @@ jobs: |
|||
runs-on: windows-latest |
|||
steps: |
|||
- uses: actions/checkout@v2 |
|||
- name: Set up JDK 14 |
|||
- name: Set up JDK 17 |
|||
uses: actions/setup-java@v1 |
|||
with: |
|||
java-version: 14 |
|||
java-version: 17 |
|||
- name: Build with Gradle |
|||
run: ./gradlew jpackageZip |
|||
- name: Rename jpackage zip |
|||
run: mv ./build/distributions/openrndr-application.zip ./build/distributions/openrndr-application-windows.zip |
|||
- name: Create Release |
|||
uses: ncipollo/[email protected] |
|||
uses: ncipollo/release-action@v1.12.0 |
|||
id: create_release |
|||
with: |
|||
token: ${{ secrets.GITHUB_TOKEN }} |
|||
|
Loading…
Reference in new issue