-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
50 additions
and
29 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,43 @@ | ||
# Automatically build the project and run any configured tests for every push | ||
# and submitted pull request. This can help catch issues that only occur on | ||
# certain platforms or Java versions, and provides a first line of defence | ||
# against bad commits. | ||
name: Java CI with Gradle | ||
|
||
name: build | ||
on: [pull_request, push] | ||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
concurrency: | ||
group: "latest" | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
# Use these Java versions | ||
java: [ | ||
21, # Current Java LTS | ||
] | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-latest | ||
permissions: write-all | ||
steps: | ||
- name: checkout repository | ||
uses: actions/checkout@v4 | ||
- name: validate gradle wrapper | ||
uses: gradle/wrapper-validation-action@v2 | ||
- name: setup jdk ${{ matrix.java }} | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: ${{ matrix.java }} | ||
distribution: 'microsoft' | ||
- name: make gradle wrapper executable | ||
run: chmod +x ./gradlew | ||
- name: build | ||
java-version: '21' | ||
distribution: 'zulu' | ||
java-package: 'jdk' | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
- name: Build | ||
run: ./gradlew build | ||
- name: capture build artifacts | ||
if: ${{ matrix.java == '21' }} # Only upload artifacts built from latest java | ||
uses: actions/upload-artifact@v4 | ||
|
||
- name: Remove *-sources.jar | ||
run: rm ./build/libs/*-sources.jar || true | ||
|
||
- uses: "0xDylan/[email protected]" | ||
with: | ||
name: Artifacts | ||
path: build/libs/ | ||
repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
automatic_release_tag: "1.20.6" | ||
prerelease: false | ||
title: "Latest Build (1.20.6)" | ||
files: | | ||
./build/libs/*.jar |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# CC Cape Addon | ||
#### The First CC Addon Ever Created 🎉 | ||
|
||
## What This Addon Does? | ||
- **Disable ClickCrystals Capes**: Remove ClickCrystals capes. | ||
- **Disable Staff Notifications**: Disable staff messages when joining a world. | ||
|
||
## Installation | ||
To install the CC Cape Addon: | ||
|
||
1. **Download the Addon**: Obtain the latest version of the addon from the [releases page](https://github.com/clickcrystals-development/Cape-Disabler-Addon/releases). | ||
2. **Add to Mods Folder**: Move the downloaded `.jar` file into your Minecraft `mods` folder. | ||
3. **Launch Minecraft**: Start Minecraft with ClickCrystals & Fabric API. The addon will automatically be loaded. | ||
|
||
## Happy modding with ClickCrystals and the CC Cape Addon! |
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