-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (38 loc) · 1.17 KB
/
publish.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
name: Publish on GitHub
on: [ pull_request, workflow_dispatch, push ]
env:
JAVA_VERSION: 17
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/release'
steps:
- name: Check Environment Variables
run: env
- name: Checkout Repository
uses: actions/checkout@v3
with:
submodules: true
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: "temurin"
java-version: 17
- name: Make Gradle Wrapper Executable
if: ${{ runner.os != 'Windows' }}
run: chmod +x ./gradlew
- name: Run Datagen
run: ./gradlew runDatagen
- name: Build
run: ./gradlew clean build
- name: Publish (CurseForge/Modrinth/GitHub)
uses: Kir-Antipov/mc-publish@v3.3 #The specified MC-Publish GitHub Action in the version 3.2
with:
changelog-file: CHANGELOG.md
github-token: "${{secrets.GITHUB_TOKEN}}"
github-generate-changelog: true
version-type: beta
loaders: fabric
java: "${{env.JAVA_VERSION}}"