docs: enhance README with badges, features, and plugin details #1
This file contains hidden or 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
| name: Build Plugin JAR | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: コードをチェックアウト | |
| uses: actions/checkout@v4 | |
| - name: Java環境のセットアップ (JDK 8) | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '8' | |
| distribution: 'temurin' | |
| cache: 'gradle' | |
| - name: gradlewに実行権限を付与 | |
| run: chmod +x ./gradlew | |
| - name: JARのビルド (Gradle) | |
| run: ./gradlew shadowJar | |
| - name: ビルドしたJARを保存 (アーティファクト) | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: plugin-jar | |
| path: build/libs/*.jar |