mirror of
https://github.com/GTNewHorizons/GTNH-Actions-Workflows.git
synced 2025-07-03 02:41:29 +02:00
Allow specifying workspace setup type for release tags workflow (#6)
This commit is contained in:
parent
b9d2eb89a6
commit
28a1f3ea38
8
.github/workflows/release-tags.yml
vendored
8
.github/workflows/release-tags.yml
vendored
@ -10,6 +10,12 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
MAVEN_PASSWORD:
|
MAVEN_PASSWORD:
|
||||||
required: false
|
required: false
|
||||||
|
inputs:
|
||||||
|
workspace:
|
||||||
|
description: 'setupCIWorkspace/setupDecompWorkspace'
|
||||||
|
required: false
|
||||||
|
default: "setupCIWorkspace"
|
||||||
|
type: string
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@ -34,7 +40,7 @@ jobs:
|
|||||||
run: chmod +x gradlew
|
run: chmod +x gradlew
|
||||||
|
|
||||||
- name: Setup the workspace
|
- name: Setup the workspace
|
||||||
run: ./gradlew setupCIWorkspace
|
run: ./gradlew ${{ inputs.workspace }}
|
||||||
|
|
||||||
- name: Build the mod
|
- name: Build the mod
|
||||||
run: ./gradlew build
|
run: ./gradlew build
|
||||||
|
Loading…
x
Reference in New Issue
Block a user