diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 0a2a795..ea1b10d 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -35,38 +35,37 @@ jobs: ls ~/BuildTools shell: bash -# - name: Set up JDK 8 -# uses: actions/setup-java@v2 -# with: -# java-version: '8' -# distribution: 'adopt' + - name: Set up JDK 8 + uses: actions/setup-java@v2 + with: + java-version: '8' + distribution: 'adopt' -# - name: Run BuildTools Pre 1.17 -# working-directory: ~/BuildTools -# run: | -# ls ~/BuildTools -R -# # make file runnable, might not be necessary -# chmod +x "${GITHUB_WORKSPACE}/BuildTools/build-pre1.17.sh" -# # run script -# bash build-pre1.17.sh -# ls ~/.m2/repository/org/spigotmc/ -R -# shell: bash + - name: Run BuildTools Pre 1.17 + working-directory: BuildTools + run: | + cd ~/BuildTools + # make file runnable, might not be necessary + chmod +x "${GITHUB_WORKSPACE}/BuildTools/build-pre1.17.sh" + # run script + bash ${GITHUB_WORKSPACE}/BuildTools/build-pre1.17.sh + shell: bash -# - name: Set up JDK 16 -# uses: actions/setup-java@v2 -# with: -# java-version: '16' -# distribution: 'adopt' + - name: Set up JDK 16 + uses: actions/setup-java@v2 + with: + java-version: '16' + distribution: 'adopt' -# - name: Run BuildTools 1.17 -# working-directory: ~/BuildTools -# run: | -# # make file runnable, might not be necessary -# chmod +x "${GITHUB_WORKSPACE}/BuildTools/build-1.17.sh" -# # run script -# bash build-1.17.sh -# ls ~/.m2/repository/org/spigotmc/ -R -# shell: sh + - name: Run BuildTools 1.17 + working-directory: BuildTools + run: | + cd ~/BuildTools + # make file runnable, might not be necessary + chmod +x "${GITHUB_WORKSPACE}/BuildTools/build-1.17.sh" + # run script + bash ${GITHUB_WORKSPACE}/BuildTools/build-1.17.sh + shell: bash - name: Set up JDK 17 uses: actions/setup-java@v2 @@ -78,24 +77,22 @@ jobs: working-directory: BuildTools run: | cd ~/BuildTools - ls -R # make file runnable, might not be necessary chmod +x "${GITHUB_WORKSPACE}/BuildTools/build-1.18+.sh" # run script bash ${GITHUB_WORKSPACE}/BuildTools/build-1.18+.sh - ls ~/BuildTools -R - shell: sh + shell: bash -# - name: Build with Maven -# run: mvn -B package --file pom.xml + - name: Build with Maven + run: mvn -B package --file pom.xml -# - name: Upload Release Asset -# id: upload-release-asset -# uses: softprops/action-gh-release@v1 -# if: startsWith(github.event.ref, 'refs/tags/v') -# with: -# draft: true -# generate_release_notes: true -# files: | -# ${GITHUB_WORKSPACE}/Server/plugins/ChestsPlusPlus-*.jar + - name: Upload Release Asset + id: upload-release-asset + uses: softprops/action-gh-release@v1 + if: startsWith(github.event.ref, 'refs/tags/v') + with: + draft: true + generate_release_notes: true + files: | + ${GITHUB_WORKSPACE}/Server/plugins/ChestsPlusPlus-*.jar