diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 40100c4..c74c017 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -11,22 +11,32 @@ permissions: contents: write jobs: - github_build: + build: name: Build release binaries runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3 + with: + submodules: true - name: Set up JDK - uses: actions/setup-java@v4 + uses: actions/setup-java@v1 with: - distribution: adopt java-version: 11 + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Build with Gradle - run: bash gradlew clean pz + run: ./gradlew clean pz + + # - name: Build with Gradle + # run: | + # java -version + # chmod +x gradlew + # ./gradlew clean pz - name: Upload artifacts uses: actions/upload-artifact@v3