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

55 lines
1.6 KiB
YAML
Raw Normal View History

2024-06-08 22:45:07 +02:00
on:
2024-06-08 22:47:42 +02:00
workflow_dispatch:
2024-06-08 22:45:07 +02:00
push:
paths:
2024-06-10 17:32:49 +02:00
- ".forgejo/workflows/build-server.yml"
2024-06-08 22:58:38 +02:00
- "Server/**"
2024-06-10 18:17:54 +02:00
- "Discord/**"
2024-06-08 22:45:07 +02:00
jobs:
make:
name: Build BaseBand Server
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 09:49:58 +02:00
run: bash scripts/webhook.sh "**(Server)** Build Action Started at"
2024-06-08 22:45:07 +02:00
- name: Initialize Gradle
uses: https://github.com/gradle/actions/setup-gradle@v3
- name: Build
2024-06-10 18:17:54 +02:00
run: ./gradlew --no-daemon Server:build Discord:build
- name: Upload Server
continue-on-error: true
2024-06-08 22:45:07 +02:00
uses: forgejo/upload-artifact@v4
with:
name: BaseBand-Server.jar
2024-06-10 21:04:15 +02:00
path: Server/build/libs/BaseBand-Server.jar
- name: Upload Bot
continue-on-error: true
uses: forgejo/upload-artifact@v4
with:
name: BaseBand-Discord.jar
path: Discord/build/libs/BaseBand-Discord.jar
- name: Push to Prod Server
2024-06-09 01:03:11 +02:00
if: github.ref == 'refs/heads/release'
env:
2024-06-09 12:08:48 +02:00
SSH_PRIVATEKEY: ${{ secrets.SSH_PRIVATEKEY }}
2024-06-09 01:03:11 +02:00
GPG_PRIVATEKEY: ${{ secrets.GPG_PRIVATEKEY }}
2024-06-09 03:26:18 +02:00
BB_HOST: ${{ vars.BB_HOST }}
2024-06-09 12:08:48 +02:00
BB_PORT: ${{ vars.BB_PORT }}
BB_PATH: ${{ vars.BB_PATH }}
2024-06-10 18:17:54 +02:00
run: |
2024-06-12 09:49:58 +02:00
bash scripts/push_file.sh Server/build/libs/BaseBand-Server.jar
bash scripts/push_file.sh Discord/build/libs/BaseBand-Discord.jar
2024-06-12 08:00:37 +02:00
- name: Notify Action Completion
2024-06-12 09:49:58 +02:00
run: bash scripts/webhook.sh "**(Server)** Build Action Completed at"