Skip to content

Commit

Permalink
Added README.MD
Browse files Browse the repository at this point in the history
  • Loading branch information
I-No-oNe authored Aug 28, 2024
1 parent fc9cb60 commit 2424fb0
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 29 deletions.
62 changes: 34 additions & 28 deletions .github/workflows/build.yml
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
15 changes: 15 additions & 0 deletions README.MD
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!
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class ClickCrystalsCapeDisabler implements ModInitializer, Global {
public static final Logger LOGGER = LoggerFactory.getLogger(MOD_ID);
public static Config config = JsonSerializable.load(Config.PATH_CONFIG, Config.class, new Config());

/**D
/**
* @author I-No-oNe
* First CC Addon -> Made Only For CC Staff
* Be Aware That This Mod Is Experimental
Expand Down

0 comments on commit 2424fb0

Please sign in to comment.