forked from GeyserMC/Geyser
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Composite gradle setup and artifact archival (GeyserMC#4696)
* Composite gradle setup and artifact archival * Remove 'geyser' path for PRs * Move upload-preview workflow
- Loading branch information
1 parent
9a9891a
commit 22b9fb8
Showing
5 changed files
with
77 additions
and
226 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Dispatch Preview | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
runId: | ||
required: true | ||
description: 'ID of the action to pull artifacts from' | ||
build: | ||
required: true | ||
description: 'Build number for the release' | ||
version: | ||
required: true | ||
description: 'Version under which to upload to the Downloads API' | ||
|
||
jobs: | ||
dispatch-preview: | ||
# Allow access to secrets if we are uploading a preview | ||
secrets: inherit | ||
uses: GeyserMC/actions/.github/workflows/upload-preview.yml@master | ||
with: | ||
build: ${{ inputs.build }} | ||
version: ${{ inputs.version }} | ||
files: | | ||
bungeecord:Geyser-BungeeCord.jar | ||
fabric:Geyser-Fabric.jar | ||
neoforge:Geyser-NeoForge.jar | ||
spigot:Geyser-Spigot.jar | ||
standalone:Geyser-Standalone.jar | ||
velocity:Geyser-Velocity.jar | ||
viaproxy:Geyser-ViaProxy.jar | ||
project: geyserpreview | ||
runId: ${{ inputs.runId }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters