-
Notifications
You must be signed in to change notification settings - Fork 35
80 lines (70 loc) · 1.88 KB
/
build.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: Build
on:
push:
tags:
- 'v*'
branches:
- 'v*'
paths:
- 'core/**'
- 'desktop/**'
pull_request:
tags:
- 'v*'
branches:
- 'v*'
paths:
- 'core/**'
- 'desktop/**'
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- name: Check Ref
run: |
echo "Current ref: ${{ github.ref }}"
- name: Clone Repo
uses: actions/checkout@v4
- name: Setup JavaJDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'liberica'
cache: 'gradle'
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
with:
gradle-version: 8.1.1
- name: Execute Gradle Tasks
run: gradle clean distAll
- name: Upload Exe
uses: actions/upload-artifact@v3
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
with:
name: ArkPets.exe
path: desktop/build/dist/*.exe
- name: Upload Zip
uses: actions/upload-artifact@v3
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
with:
name: ArkPets.zip
path: desktop/build/dist/*.zip
- name: Upload Jar
uses: actions/upload-artifact@v3
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
with:
name: ArkPets.jar
path: desktop/build/dist/*.jar
# DUE TO JLINK ISSUES, AUTO RELEASE WAS TEMPORARILY BANNED.
#
# - name: Publish Release
# uses: marvinpinto/action-automatic-releases@latest
# if: ${{ startsWith(github.ref, 'refs/tags/') }}
# with:
# repo_token: "${{ secrets.GITHUB_TOKEN }}"
# automatic_release_tag: "${{ github.ref_name }}"
# draft: false
# prerelease: false
# title: "${{ github.ref_name }}"
# files: desktop/build/dist/*