From 0a1ed84007a727e08151b3f85c1d1d6104a5ee26 Mon Sep 17 00:00:00 2001 From: Etil <81570777+etil2jz@users.noreply.github.com> Date: Thu, 2 Dec 2021 15:15:31 +0100 Subject: [PATCH] Make it build --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f7b75c7..394480c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,16 +34,16 @@ jobs: ./gradlew clean applyPatches --stacktrace --no-daemon - name: Build run: | - ./gradlew paperclipJar --stacktrace --no-daemon + ./gradlew createReobfBundlerJar --stacktrace --no-daemon - name: Archive Paperclip uses: actions/upload-artifact@v2 with: name: Mirai-Java17 - path: build/libs/Mirai-1.18-R0.1-SNAPSHOT.jar + path: build/libs/Mirai-bundler-1.18-R0.1-SNAPSHOT-reobf.jar - name: Prepare Github Page Files run: | mkdir -p public - cp build/libs/Mirai-1.18-R0.1-SNAPSHOT.jar public/ + cp build/libs/Mirai-bundler-1.18-R0.1-SNAPSHOT-reobf.jar public/Mirai-1.18-R0.1-SNAPSHOT.jar - name: Deploy to Github Pages if: github.event_name != 'pull_request' uses: peaceiris/actions-gh-pages@v3