[Mirror] A small vanilla-styled Minecraft mod which lets you access your notes in a simple book in the pause menu.
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

New workflow

+6 -13
+6 -13
.forgejo/workflows/build.yml
··· 1 - on: [pull_request, push] 2 - 3 1 jobs: 4 2 build: 5 3 runs-on: docker 6 - strategy: 7 - matrix: 8 - java: [21] 9 4 steps: 10 5 - name: Checkout Repository 11 6 uses: actions/checkout@v3 12 - - name: Set up Java 21 13 - uses: actions/setup-java@v3 14 - with: 15 - java-version: 21 16 - distribution: 'temurin' 17 - - run: ./gradlew build 7 + - name: Install Java 8 + run: apt-get update && apt-get install -y openjdk-21 9 + - name: Compile Project 10 + run: ./gradlew build 18 11 - uses: actions/upload-artifact@v3 19 12 with: 20 - name: nightly-builds 21 - path: build/libs/* 13 + name: nightly-build-amd64 14 + path: build/libs