diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index e69de29..74b778d 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -0,0 +1,40 @@ +name: Build + +on: + push: + branches: + - main + - master + pull_request: + branches: + - main + - master + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up JDK 21 + uses: actions/setup-java@v4 + with: + java-version: '21' + distribution: 'temurin' + cache: 'gradle' + + - name: Grant execute permission for gradlew + run: chmod +x gradlew + + - name: Build with Gradle + run: ./gradlew build --no-daemon + + - name: Upload artifact + uses: actions/upload-artifact@v3 + with: + name: MoreSpearEnchantments + path: build/libs/*.jar + retention-days: 30 + + diff --git a/README.md b/README.md new file mode 100644 index 0000000..604161d --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +
+
+