-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Youkii-Chen
authored
Nov 19, 2021
1 parent
d77deea
commit 7519e57
Showing
1 changed file
with
14 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,19 @@ jobs: | |
run: wget https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar | ||
|
||
- name: Build Jars | ||
run: java -jar BuildTools.jar --rev latest | ||
run: | | ||
mkdir ./outputs | ||
java -jar BuildTools.jar --rev latest --output-dir ./outputs | ||
- name: Upload to release | ||
uses: ncipollo/[email protected] | ||
with: | ||
name: Ver.Latest | ||
allowUpdates: true | ||
replacesArtifacts: true | ||
tag: BuildRelease | ||
# commit: ${{ env.CURRENT_BRANCH }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
artifacts: ./outputs/* | ||
|
||
- run: ls -lh | ||
|