Sync Time of last jukebox update #75
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: Customdiscs CI | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Set up JDK | |
uses: actions/[email protected] | |
with: | |
distribution: temurin | |
java-version: 21 | |
- name: Build CustomDiscs | |
run: ./gradlew build | |
- name: Upload CustomDiscs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "CustomDiscs" | |
path: "build/libs/" |