2024-06-10 17:05:54 +02:00
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- ".forgejo/workflows/build-installer.yml"
|
|
|
|
- "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
|
|
|
|
run: bash webhook.sh "**(Installer)** Build Action Started at"
|
2024-06-10 17:05:54 +02:00
|
|
|
- name: Initialize Gradle
|
|
|
|
uses: https://github.com/gradle/actions/setup-gradle@v3
|
|
|
|
- name: Build
|
2024-06-10 18:28:11 +02:00
|
|
|
run: |
|
2024-06-10 18:37:41 +02:00
|
|
|
./gradlew --no-daemon Installer:build
|
2024-06-10 17:05:54 +02:00
|
|
|
bash mobf.sh Installer/build/libs/BaseBand-Installer.jar
|
|
|
|
- name: Upload Installer
|
2024-06-11 00:54:40 +02:00
|
|
|
continue-on-error: true
|
2024-06-10 17:05:54 +02:00
|
|
|
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
|
|
|
|
run: bash webhook.sh "**(Installer)** Build Action Completed at"
|