-
Notifications
You must be signed in to change notification settings - Fork 53
76 lines (65 loc) · 1.81 KB
/
Copy pathbuild.yml
File metadata and controls
76 lines (65 loc) · 1.81 KB
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
name: Build
on:
push:
tags:
- 'v*'
branches:
- 'v*'
pull_request:
tags:
- 'v*'
branches:
- 'v*'
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
env:
ARTIFACT_NAME: ArkPets
steps:
- name: Show meta info
run: |
echo "Current ref: ${{ github.ref }}"
echo "Current sha: ${{ github.sha }}"
- name: Checkout repo
uses: actions/checkout@v6
- name: Setup Java
uses: actions/setup-java@v5
with:
java-version: '17'
distribution: 'liberica'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5
with:
gradle-version: '8.14.3'
- name: Setup Inno Setup
run: choco install innosetup --no-progress
- name: Execute gradle tasks
run: gradle clean distAll
- name: Upload exe
uses: actions/upload-artifact@v6
with:
name: ${{ env.ARTIFACT_NAME }}-Setup.exe
path: desktop/build/dist/*.exe
- name: Upload zip
uses: actions/upload-artifact@v6
with:
name: ${{ env.ARTIFACT_NAME }}.zip
path: desktop/build/dist/*.zip
- name: Upload jar
uses: actions/upload-artifact@v6
with:
name: ${{ env.ARTIFACT_NAME }}.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/*