We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1740be4 commit 7d662e1Copy full SHA for 7d662e1
.github/workflows/build.yml
@@ -0,0 +1,21 @@
1
+name: Build
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - name: Set up OpenJDK 17
11
+ uses: actions/setup-java@v4
12
+ with:
13
+ java-version: '17'
14
+ distribution: 'adopt' # You can choose other OpenJDK distributions.
15
+ - name: Build with Gradle
16
+ run: ./gradlew build # Ensure your gradlew script is executable
17
+ - name: Upload Artifact
18
+ uses: actions/upload-artifact@v4
19
20
+ name: Re-Exposer
21
+ path: build/libs/*.jar # Make sure this path matches the location of your build artifacts
gradlew
100644
100755
0 commit comments