Skip to content

Commit

Permalink
chore: add github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
yinheli committed Dec 7, 2023
1 parent 9283a0c commit 657dcc6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true

- name: Set up JDK
uses: actions/setup-java@v4
Expand All @@ -26,7 +28,10 @@ jobs:
java-version: 11

- name: Build with Gradle
run: bash gradlew clean pz
run: |
java -version
chmod +x gradlew
./gradlew clean pz
- name: Upload artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 657dcc6

Please sign in to comment.