-
Notifications
You must be signed in to change notification settings - Fork 13
49 lines (47 loc) · 1.26 KB
/
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
43
44
45
46
47
48
49
name: Release
on:
workflow_dispatch:
inputs:
target_version:
type: string
required: false
description: "mod version | empty = next option"
update_type:
type: choice
required: false
description: "update type"
default: "minor"
options:
- "major"
- "minor"
- "patch"
- "none"
release_type:
type: choice
required: true
description: "type of release"
default: "release"
options:
- "alpha"
- "beta"
- "release"
debug:
type: boolean
required: false
default: false
description: "enable debug mode (GitHub only)"
jobs:
redirect:
uses: AlmostReliable/.github/.github/workflows/release-java17-nf.yml@main
secrets: inherit
with:
mod_name: "MERequester"
curseforge_id: "688367"
modrinth_id: "E6BFl96N"
dependencies: |
ae2(required){curseforge:223794}{modrinth:XxWD5pD3}
target_version: ${{ github.event.inputs.target_version }}
update_type: ${{ github.event.inputs.update_type }}
release_type: ${{ github.event.inputs.release_type }}
loaders: "neoforge"
debug: ${{ github.event.inputs.debug }}