-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploying to gh-pages from @ mindustry-antigrief/mindustry-client@ad7…
…3482 🚀
- Loading branch information
0 parents
commit a58fb6d
Showing
22 changed files
with
3,235 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Build Unstable | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Commit | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up JDK 14 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 14 | ||
|
||
- name: Build Client | ||
run: | | ||
git clone --depth=1 --branch=custom-client https://github.com/mindustry-antigrief/mindustry-client-v6 | ||
cd mindustry-client-v6 | ||
./gradlew desktop:dist -PclientBuild=${{ github.ref }} -PupdateUrl=${{ github.repository }} | ||
mv desktop/build/libs/Mindustry.jar desktop/build/libs/desktop.jar | ||
- name: Upload Release Asset | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: Mindustry/desktop/build/libs/desktop.jar | ||
tag: ${{ github.ref }} |
Oops, something went wrong.