mirror of
https://github.com/Miasmusa/Shadow.git
synced 2025-02-17 23:40:22 -05:00
CI
This commit is contained in:
parent
abb8b7e57a
commit
35d6766568
1 changed files with 24 additions and 0 deletions
24
build.yml
Normal file
24
build.yml
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
name: Build Shadow
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
java: [17]
|
||||||
|
fail-fast: true
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2.3.5
|
||||||
|
- name: JDK ${{ matrix.java }}
|
||||||
|
uses: actions/setup-java@v2.3.1
|
||||||
|
with:
|
||||||
|
java-version: ${{ matrix.java }}
|
||||||
|
cache: 'gradle'
|
||||||
|
distribution: 'temurin'
|
||||||
|
- name: Patch and build
|
||||||
|
run: "./createRelease.sh"
|
||||||
|
- uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: Builded Jars
|
||||||
|
path: build/libs
|
Loading…
Reference in a new issue