Add files via upload

This commit is contained in:
seasnail 2021-06-15 15:33:53 +01:00 committed by GitHub
parent ee385e5370
commit 99699ed557
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 52 additions and 0 deletions

25
checks.yml Normal file
View File

@ -0,0 +1,25 @@
name: checks
on:
- pull_request
- push
jobs:
build:
strategy:
matrix:
os:
- macos-latest
- windows-latest
- ubuntu-latest
runs-on: '${{ matrix.os }}'
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup JDK 16
uses: actions/setup-java@v2
with:
java-version: 16
distribution: adopt
- name: Build
run: |
chmod +x ./gradlew
./gradlew build

27
devbuild.yml Normal file
View File

@ -0,0 +1,27 @@
name: devbuild
on:
- push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup JDK 16
uses: actions/setup-java@v2
with:
java-version: 16
distribution: adopt
- name: Build
run: |
chmod +x ./gradlew
./gradlew build
- name: Create Dev Build release
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: '${{ secrets.GITHUB_TOKEN }}'
automatic_release_tag: latest
prerelease: true
title: Dev Build
files: |
./build/libs/*.jar