-
Notifications
You must be signed in to change notification settings - Fork 37
45 lines (35 loc) · 938 Bytes
/
gradle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Java CI
on: [push]
jobs:
build:
runs-on: windows-latest
name: Build app image
steps:
- uses: actions/checkout@v1
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Build with Gradle
run: ./gradlew build
- name: Download BSL LS
uses: robinraju/release-downloader@v1
with:
repository: '1c-syntax/bsl-language-server'
tag: 'v0.23.1'
fileName: 'bsl-language-server_win.zip'
extract: true
out-file-path: 'build/libs'
- run: del ./build/libs/bsl-language-server_win.zip
- name: Build msi
run: ./gradlew jpackage
- uses: actions/upload-artifact@master
with:
name: phoenixbsl.msi
path: |
./phoenixbsl-*.msi
- uses: actions/upload-artifact@master
with:
name: phoenixbsl.jar
path: |
./build/libs/phoenix*.jar