Bump actions/upload-artifact from 3 to 4 #206
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java CI with Gradle | |
on: [ push ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew build | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts | |
path: ./build/libs/ | |
# - name: Release Build | |
# uses: softprops/action-gh-release@v1 | |
# if: startsWith(github.ref, 'refs/tags/') | |
# with: | |
# body_path: CHANGELOG.md | |
# files: "./build/libs/**" | |
# - name: Build Success | |
# uses: rjstone/discord-webhook-notify@v1 | |
# if: success() | |
# with: | |
# severity: info | |
# details: Build Succeeded! | |
# webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} | |
# - name: Build Failure | |
# uses: rjstone/discord-webhook-notify@v1 | |
# if: failure() | |
# with: | |
# severity: error | |
# details: Build Failed! | |
# webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} | |
# - name: Build Cancelled | |
# uses: rjstone/discord-webhook-notify@v1 | |
# if: cancelled() | |
# with: | |
# severity: warn | |
# details: Build Canceled! | |
# webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} | |