mirror of
https://git.webmc.xyz/Starlike-Client/Starlike-Client
synced 2025-06-04 01:42:01 -09:00
104 lines
3.6 KiB
YAML
104 lines
3.6 KiB
YAML
name: Build
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
jobs:
|
|
build:
|
|
permissions:
|
|
contents: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Setup Java
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: '21'
|
|
cache: 'gradle'
|
|
- name: Validate Gradle Wrapper
|
|
uses: gradle/actions/wrapper-validation@v4
|
|
- name: Compile client
|
|
run: |
|
|
bash ./CompileEPK.sh &&
|
|
bash ./CompileJS.sh &&
|
|
bash ./MakeOfflineDownload.sh
|
|
- name: Compile client (WASM)
|
|
run: |
|
|
cd ./wasm_gc_teavm &&
|
|
bash ./CompileEPK.sh &&
|
|
bash ./CompileWASM.sh &&
|
|
bash ./CompileEagRuntimeJS.sh &&
|
|
bash ./CompileBootstrapJS.sh &&
|
|
bash ./CompileLoaderWASM.sh &&
|
|
bash ./MakeWASMClientBundle.sh &&
|
|
cd ..
|
|
- name: Prepare files
|
|
run: |
|
|
mkdir -p ${{ runner.temp }}/gh-pages &&
|
|
cp -t ${{ runner.temp }}/gh-pages \
|
|
./LICENSE.md \
|
|
./javascript/assets.epk \
|
|
./javascript/assets.epw \
|
|
./javascript/bootstrap.js \
|
|
./javascript/classes.js \
|
|
./javascript/classes.js.map \
|
|
./javascript/index.html \
|
|
./javascript/Starlike_Client_Offline.html \
|
|
./javascript/Starlike_Client_Offline_WASM.html \
|
|
./javascript/wasm.html
|
|
- name: Upload web files
|
|
continue-on-error: true
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: Starlike_Client_Web
|
|
path: ${{ runner.temp }}/gh-pages
|
|
retention-days: 1
|
|
compression-level: 9
|
|
- name: Upload offline download
|
|
continue-on-error: true
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: Starlike_Client_Offline
|
|
path: |
|
|
${{ runner.temp }}/gh-pages/LICENSE.md
|
|
${{ runner.temp }}/gh-pages/Starlike_Client_Offline.html
|
|
${{ runner.temp }}/gh-pages/Starlike_Client_Offline_WASM.html
|
|
retention-days: 1
|
|
compression-level: 9
|
|
- name: Upload web files (WASM)
|
|
continue-on-error: true
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: Starlike_Client_Web_WASM
|
|
path: |
|
|
${{ runner.temp }}/gh-pages/LICENSE.md
|
|
${{ runner.temp }}/gh-pages/assets.epw
|
|
${{ runner.temp }}/gh-pages/bootstrap.js
|
|
${{ runner.temp }}/gh-pages/Starlike_Client_Offline_WASM.html
|
|
${{ runner.temp }}/gh-pages/wasm.html
|
|
retention-days: 1
|
|
compression-level: 9
|
|
- name: Upload offline download (WASM)
|
|
continue-on-error: true
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: Starlike_Client_Offline_WASM
|
|
path: |
|
|
${{ runner.temp }}/gh-pages/LICENSE.md
|
|
${{ runner.temp }}/gh-pages/Starlike_Client_Offline_WASM.html
|
|
retention-days: 1
|
|
compression-level: 9
|
|
- name: Deploy to `gh-pages` branch
|
|
if: github.ref == 'refs/heads/main'
|
|
uses: peaceiris/actions-gh-pages@v4
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
publish_dir: ${{ runner.temp }}/gh-pages
|
|
allow_empty_commit: true
|
|
force_orphan: true
|
|
user_name: 'github-actions[bot]'
|
|
user_email: '41898282+github-actions[bot]@users.noreply.github.com'
|
|
commit_message: 'github-actions: deploy'
|
|
# disable_nojekyll: true
|
|
cname: 'starlike.zumbiepig.dev'
|