-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (32 loc) · 1.02 KB
/
blob-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
name: Blob Build
on:
push:
branches:
- master
jobs:
build:
if: startsWith(github.event.head_commit.message, '[CI skip]') == false
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Validate Gradle wrapper
uses: gradle/actions/wrapper-validation@v3
- name: Build with Gradle
uses: gradle/gradle-build-action@v3
with:
arguments: build shadowJar
- name: Rename jar file
run: mv build/libs/UltimateGenerators2-*.jar build/libs/UltimateGenerators2.jar
- name: Upload to Blob Builds
uses: WalshyDev/blob-builds/gh-action@main
with:
project: UltimateGenerators2
file: ./build/libs/UltimateGenerators2.jar
apiToken: ${{ secrets.BLOB_BUILDS_API_TOKEN }}
releaseNotes: ${{ github.event.head_commit.message }}