-
-
Notifications
You must be signed in to change notification settings - Fork 13
42 lines (35 loc) · 961 Bytes
/
release.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
name: Publish Release
on:
workflow_dispatch:
inputs:
platform:
type: choice
description: Platform
options:
- both
- fabric
- forge
jobs:
build:
runs-on: ubuntu-latest
env:
RELEASE_BUILD: true
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
CURSEFORGE_TOKEN: ${{ secrets.CURSEFORGE_TOKEN }}
MAVEN_TOKEN: ${{ secrets.MAVEN_TOKEN }}
PLATFORM: ${{ inputs.platform }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: temurin
cache: gradle
- name: Validate Gradle Wrapper Integrity
uses: gradle/wrapper-validation-action@v2
- name: Make Gradle wrapper executable
run: chmod +x ./gradlew
- name: Build & Publish
run: ./gradlew numismaticsPublish