diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml deleted file mode 100644 index eb0ab25..0000000 --- a/.github/workflows/develop.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Build & Publish - -on: - push: - branches: - - develop - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Set up Java - uses: actions/setup-java@v4 - - with: - java-version: 17 - distribution: temurin - - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - - name: Gradle (Build) - run: "./gradlew build" - - - name: Upload build artifacts - uses: actions/upload-artifact@v4 - - with: - name: Build and Deploy Artifacts - path: build/libs/*.jar