From 0975f5611b35ffe7b632b05955af3098ed565820 Mon Sep 17 00:00:00 2001 From: Koopa <115321970+KoopaCode@users.noreply.github.com> Date: Fri, 31 Jan 2025 20:30:54 -0500 Subject: [PATCH] Quick Build Test --- {workflows => .github/workflows}/build.yml | 104 ++++++++++----------- 1 file changed, 52 insertions(+), 52 deletions(-) rename {workflows => .github/workflows}/build.yml (92%) diff --git a/workflows/build.yml b/.github/workflows/build.yml similarity index 92% rename from workflows/build.yml rename to .github/workflows/build.yml index 21236d5..ce23cd7 100644 --- a/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,53 +1,53 @@ -name: Build -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - release: - types: [created] - -jobs: - build: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - - steps: - - uses: actions/checkout@v3 - - - name: Set up JDK 17 - uses: actions/setup-java@v3 - with: - java-version: '17' - distribution: 'temurin' - cache: maven - - - name: Build with Maven - run: mvn -B package --file pom.xml - - - name: Upload build artifacts - uses: actions/upload-artifact@v3 - with: - name: NoBullying - path: target/nobullying-*.jar - - # Create release with artifacts when a release is created - release: - needs: build - if: github.event_name == 'release' - runs-on: ubuntu-latest - permissions: - contents: write - - steps: - - name: Download build artifacts - uses: actions/download-artifact@v3 - with: - name: NoBullying - - - name: Upload release artifacts - uses: softprops/action-gh-release@v1 - with: +name: Build +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + release: + types: [created] + +jobs: + build: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + + steps: + - uses: actions/checkout@v3 + + - name: Set up JDK 17 + uses: actions/setup-java@v3 + with: + java-version: '17' + distribution: 'temurin' + cache: maven + + - name: Build with Maven + run: mvn -B package --file pom.xml + + - name: Upload build artifacts + uses: actions/upload-artifact@v3 + with: + name: NoBullying + path: target/nobullying-*.jar + + # Create release with artifacts when a release is created + release: + needs: build + if: github.event_name == 'release' + runs-on: ubuntu-latest + permissions: + contents: write + + steps: + - name: Download build artifacts + uses: actions/download-artifact@v3 + with: + name: NoBullying + + - name: Upload release artifacts + uses: softprops/action-gh-release@v1 + with: files: nobullying-*.jar \ No newline at end of file