Skip to content

Commit

Permalink
Deploying to gh-pages from @ mindustry-antigrief/mindustry-client@ad7…
Browse files Browse the repository at this point in the history
…3482 🚀
  • Loading branch information
buthed010203 committed Jul 1, 2024
0 parents commit a58fb6d
Show file tree
Hide file tree
Showing 22 changed files with 3,235 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build.yml
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 }}
Loading

0 comments on commit a58fb6d

Please sign in to comment.