-
Notifications
You must be signed in to change notification settings - Fork 15
35 lines (31 loc) · 940 Bytes
/
maven-publish.yml
File metadata and controls
35 lines (31 loc) · 940 Bytes
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
name: Maven Publish
on:
workflow_dispatch:
inputs:
version:
description: "The Maven version to publish, e.g. 1.1.1-rc1"
type: string
required: true
tag-name:
description: "The GitHub release tag name, e.g. v1.0.0"
type: string
required: true
hytale-server-version:
description: "The Hytale Server version to use for dependency resolution"
type: string
required: true
java-version:
description: "Java version for Maven publishing"
type: string
default: "25"
permissions:
contents: read
jobs:
maven-publish:
uses: nitrado/hytale-plugin-workflows/.github/workflows/maven-publish.yml@v2
secrets: inherit
with:
version: ${{ inputs.version }}
tag-name: ${{ inputs.tag-name }}
hytale-server-version: ${{ inputs.hytale-server-version }}
java-version: ${{ inputs.java-version }}