├── .github └── workflows │ └── build-1.21.5.yml ├── .gitignore ├── BuildTools.jar └── README.md /.github/workflows/build-1.21.5.yml: -------------------------------------------------------------------------------- 1 | name: Build Spigot 1.21.5 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | schedule: 8 | - cron: '0 0 * * 1' 9 | workflow_dispatch: 10 | 11 | jobs: 12 | build: 13 | runs-on: ubuntu-latest 14 | 15 | steps: 16 | - name: Checkout repository 17 | uses: actions/checkout@v4 18 | 19 | - name: Set up JDK 21 20 | uses: actions/setup-java@v4 21 | with: 22 | distribution: 'temurin' 23 | java-version: '21' 24 | 25 | - name: Run BuildTools 26 | run: java -jar BuildTools.jar --rev 1.21.5 27 | 28 | - name: Archive generated jar 29 | uses: actions/upload-artifact@v4 30 | with: 31 | name: spigot-1.21.5 32 | path: ./spigot-1.21.5.jar 33 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | -------------------------------------------------------------------------------- /BuildTools.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handyplus/SpigotBuilder/6976e09405eca0d02cb62e8c8a16aa2c8b058ce4/BuildTools.jar -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### Spigot 自动构建工具 2 | 3 | 使用 github Actions 每周一早8点自动构建最新的spigot1.21.5.jar 4 | 5 | 你可以在Actions里下载构建好的文件 6 | 7 | 如果帮助到你,请帮忙右上角点个Star就对作者很大的支持了~ 8 | 9 | ## Star History 10 | 11 | [![Star History Chart](https://api.star-history.com/svg?repos=handyplus/SpigotBuilder&type=Date)](https://star-history.com/handyplus/SpigotBuilder&Date) 12 | 13 | 14 | 15 | --------------------------------------------------------------------------------