Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 16 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,30 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: '1.8'
java-package: jdk+fx
- name: Create macOS app
if: matrix.os == 'macOS-latest'
run: gradle createApp
uses: eskatos/gradle-command-action@v1
with:
arguments: createApp
wrapper-cache-enabled: true
dependencies-cache-enabled: true
- name: Create Linux tar.gz
if: matrix.os == 'ubuntu-latest'
run: gradle createLinuxTargz
uses: eskatos/gradle-command-action@v1
with:
arguments: createLinuxTargz
wrapper-cache-enabled: true
dependencies-cache-enabled: true
- name: Create Windows exe
if: matrix.os == 'windows-latest'
run: gradle createWindowsInstaller
uses: eskatos/gradle-command-action@v1
with:
arguments: createWindowsInstaller
wrapper-cache-enabled: true
dependencies-cache-enabled: true
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/stale@v1
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has been automatically marked stale because it has been open 20 days with no activity. If you would like this to remain open, please remove the stale label or comment, otherwise this issue will be closed in 3 days.'
Expand Down