Fixes typo in jar name to publish assets #4
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: Java verify | |
# Controls when the workflow will run | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK for x64 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
architecture: x64 | |
cache: gradle | |
java-version-file: ./.java-version | |
- name: Test with Gradle | |
run: ./gradlew test | |
- name: Build with Gradle | |
run: ./gradlew build |