aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/publish.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/publish.yml')
-rw-r--r--.github/workflows/publish.yml37
1 files changed, 0 insertions, 37 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
deleted file mode 100644
index 621072f9..00000000
--- a/.github/workflows/publish.yml
+++ /dev/null
@@ -1,37 +0,0 @@
-name: Pre-Publish
-
-on:
- push:
- tags:
- - "*"
-
-jobs:
- build:
- env:
- GIT_URL: ${{ github.server_url }}/${{ github.repository }}/tree/${{ github.sha }}
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - name: Set up JDK 17
- uses: actions/setup-java@v3
- with:
- java-version: 17
- distribution: temurin
- - name: Set up gradle cache
- uses: gradle/gradle-build-action@v2
- - name: Build with Gradle
- run: |
- ./gradlew clean
- ./gradlew includeBackupRepo
- ./gradlew test remapJar
- env:
- NEU_RELEASE: true
- - uses: actions/upload-artifact@v3
- with:
- path: build/libs/*.jar
- - run: ./.github/workflows/upload-release.sh
- env:
- GH_TOKEN: ${{ github.token }}