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.yml34
1 files changed, 34 insertions, 0 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
new file mode 100644
index 00000000..de01458a
--- /dev/null
+++ b/.github/workflows/publish.yml
@@ -0,0 +1,34 @@
+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 test includeBackupRepo remapJar --no-daemon
+ 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 }}