BaseBandRewrite/.forgejo/workflows/build-installer.yml

54 lines
1.5 KiB
YAML
Raw Permalink Normal View History

on:
workflow_dispatch:
push:
2024-06-12 13:31:00 +02:00
branches-ignore:
- "!release"
paths:
2024-06-13 15:23:06 +02:00
- "Client/libs/**"
- ".forgejo/workflows/build-installer.yml"
2024-06-13 13:51:28 +02:00
- "scripts/**"
- "Installer/**"
jobs:
make:
name: Build BaseBand Installer
runs-on: 'docker'
steps:
- name: Setup Java
uses: https://github.com/actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 8
- name: Checkout
uses: actions/checkout@v4
2024-06-12 08:02:56 +02:00
- name: Notify Action Start
2024-06-12 12:00:55 +02:00
run: bash scripts/webhook.sh "**(Installer)** Build Action Started"
- name: Initialize Gradle
uses: https://github.com/gradle/actions/setup-gradle@v3
2024-06-13 13:51:28 +02:00
- name: Initialize ForgeGradle cache
uses: actions/cache@v4
with:
key: fg_cache
path: |
Client/build/fg_cache
Loader/build/fg_cache
2024-06-25 08:24:30 +02:00
- name: Refresh deps
run: |
2024-06-25 08:32:39 +02:00
./gradlew Installer:dependencies | grep -e "tuddylib\|ClientBoot" || true
./gradlew Installer:dependencies | grep -e "tuddylib\|ClientBoot" || true
- name: Build
2024-06-10 18:28:11 +02:00
run: |
./gradlew --no-daemon Installer:build
2024-06-12 09:49:58 +02:00
bash scripts/mobf.sh Installer/build/libs/BaseBand-Installer.jar
- name: Upload Installer
continue-on-error: true
uses: forgejo/upload-artifact@v4
with:
name: BaseBand-Installer.jar
path: Installer/build/libs/BaseBand-Installer.jar
2024-06-12 08:00:37 +02:00
- name: Notify Action Completion
2024-06-12 12:00:55 +02:00
if: always()
run: bash scripts/webhook.sh "**(Installer)** Build Action Completed"