diff --git a/.gitea/workflows/publish.yml b/.gitea/workflows/publish.yml
index 5d84a7a..62e46ba 100644
--- a/.gitea/workflows/publish.yml
+++ b/.gitea/workflows/publish.yml
@@ -1,7 +1,11 @@
name: Publish package to my Maven Repository
on:
push:
- branches: ["master"]
+ branches: [master]
+ paths-ignore:
+ - .gitignore
+ - README.md
+ - LICENSE
jobs:
docker:
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..85c6eaf
--- /dev/null
+++ b/README.md
@@ -0,0 +1,35 @@
+# Minecraft Utilities - Java Library
+
+The Java library for the Minecraft Utilities API.
+
+## Usage
+
+Maven:
+
+```xml
+
+
+ fascinated-repo-public
+ Fascinated's Repository
+ https://repo.fascinated.cc/public
+
+
+
+
+
+ xyz.mcutils
+ mcutils-java-library
+ 1.1
+
+
+```
+
+Usage:
+
+```java
+public class Main {
+ public static void main(String[] args) {
+ System.out.println(McUtilsAPI.getPlayer("Notch"));
+ }
+}
+```
\ No newline at end of file