From da2dd6c11f3e7a6e625bd669d81231ffb8cac829 Mon Sep 17 00:00:00 2001 From: Xiao X Date: Thu, 4 Jun 2026 16:42:22 -0400 Subject: [PATCH] Delete release.yml so it compiles completely fine on my computer but not on the github one? very cool --- .github/workflows/release.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 6da8e3e..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Release - -on: - push: - tags: - - '*' - -jobs: - publish: - runs-on: ubuntu-latest - - permissions: - contents: read - packages: write - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup Java - uses: actions/setup-java@v4 - with: - distribution: temurin - java-version: 25 - cache: maven - - - name: Build - run: mvn -B verify - - - name: Publish - run: mvn -B deploy - env: - CENTRAL_TOKEN_USERNAME: ${{ secrets.CENTRAL_TOKEN_USERNAME }} - CENTRAL_TOKEN_PASSWORD: ${{ secrets.CENTRAL_TOKEN_PASSWORD }}