-
-
Notifications
You must be signed in to change notification settings - Fork 83
93 lines (84 loc) · 2.87 KB
/
beta.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
81
82
83
84
85
86
87
88
89
90
91
92
93
name: Build Beta
on:
workflow_dispatch:
merge_group:
push:
branches:
- master
- bleeding-edge
paths-ignore:
- 'src/main/resources/assets/skyblocker/lang/**'
- 'CHANGELOG.md'
- 'FEATURES.md'
- 'README.md'
pull_request:
paths-ignore:
- 'src/main/resources/assets/skyblocker/lang/**'
- 'CHANGELOG.md'
- 'FEATURES.md'
- 'README.md'
env:
REF_NAME: ${{ github.ref_name }}
PR_NUMBER: ${{ github.event.number }}
PR_SHA: ${{ github.event.pull_request.head.sha }}
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout repository
uses: actions/checkout@v4
- name: Set jar name
uses: actions/github-script@v7
with:
result-encoding: string
script: |
let buildType;
let commitSha;
buildType = process.env.REF_NAME === "master" || process.env.REF_NAME === "main" ? "beta" : "alpha";
if (process.env.PR_NUMBER) {
buildType += `-pr-${process.env.PR_NUMBER}`;
commitSha = process.env.PR_SHA;
} else {
commitSha = process.env.GITHUB_SHA;
}
console.log(`Set build type to ${buildType} and commit sha to ${commitSha}`);
const fs = require("fs");
let file = fs.readFileSync("./gradle.properties");
file = file.toString().split("\n").map(e => e.trim().startsWith("mod_version") ? `${e}-${buildType}-${commitSha.substring(0, 7)}` : e).join("\n");
fs.writeFileSync("./gradle.properties", file);
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'microsoft'
java-version: '21'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
validate-wrappers: true
- name: Build with Gradle
run: ./gradlew build
- name: Store reports
if: failure()
uses: actions/upload-artifact@v4
with:
name: reports
path: |
**/build/reports/
**/build/test-results/
- name: Process artifacts
uses: actions/github-script@v7
id: fname
with:
result-encoding: string
script: |
const fs = require("fs")
return fs.readdirSync("build/libs/").filter(e => !e.endsWith("dev.jar") && !e.endsWith("sources.jar") && e.endsWith(".jar"))[0].replace(".jar", "");
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ steps.fname.outputs.result }}
path: build/libs/