Update gradle/gradle-build-action action to v3 [SECURITY] - autoclosed #125
Workflow file for this run
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: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v3 | |
- name: Build with Gradle | |
run: ./gradlew build | |
- name: Rename assets to Notify-nightly | |
if: github.repository == 'russellbanks/Notify' && github.ref == 'refs/heads/main' | |
shell: pwsh | |
run: | | |
Get-ChildItem -Recurse -Filter "Notify*" -Include "*-all.jar" | ForEach-Object { | |
Rename-Item $_.FullName -NewName "Notify-nightly$($_.Extension)" | |
} | |
- name: Release nightly JAR | |
if: github.repository == 'russellbanks/Notify' && github.ref == 'refs/heads/main' | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: Nightly release | |
tag_name: nightly | |
prerelease: true | |
files: build/libs/Notify-nightly.jar |