fix(deps): update dependency org.xerial:sqlite-jdbc to v3.45.3.0 (#77) #145
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
# Builds the project with Gradle and uploads to Modrinth with alpha tag when a commit is pushed to master. | |
name: Java CI with Gradle | |
on: | |
push: | |
permissions: | |
contents: read | |
checks: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.commits[0].message, '[ci-skip]')" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Make Gradlew executable | |
run: chmod +x ./gradlew | |
- name: Build with Gradle | |
uses: gradle/[email protected] | |
with: | |
arguments: build | |
- name: Upload NDailyRewards | |
uses: actions/[email protected] | |
with: | |
name: NDailyRewards Dev Artifacts | |
path: "build/libs/NDailyRewards-*.jar" |