Skip to content
This repository was archived by the owner on Apr 21, 2026. It is now read-only.

Commit 4a23816

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents bd3f99e + afcc005 commit 4a23816

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

.github/workflows/buildRelease.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# This workflow will build a Java project with Gradle
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
3+
4+
name: JBuild Release jar
5+
6+
on:
7+
push:
8+
branches: [ master, development ]
9+
pull_request:
10+
branches: [ master, development ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Set up JDK 8
20+
uses: actions/setup-java@v2
21+
with:
22+
java-version: '8'
23+
distribution: 'zulu'
24+
- name: Grant execute permission for gradlew
25+
run: chmod +x gradlew
26+
- name: Build with Gradle
27+
run: ./gradlew assemble
28+
- name: Upload Artifact
29+
uses: actions/upload-artifact@v1
30+
with:
31+
name: devlights-1.0.jar
32+
path: build/libs

0 commit comments

Comments
 (0)