Lua suggests #460
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: Development Build | |
| on: push | |
| env: | |
| APP_VERSION: "1.1.1" | |
| MC: "1.21.8" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: write-all | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-java@v2 | |
| with: | |
| java-version: 21 | |
| distribution: 'zulu' | |
| - name: Build | |
| run: ./gradlew build | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: binaries | |
| path: | | |
| ./build/libs/*.jar | |
| - name: Create Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| tag_name: v${{ env.MC }}_${{ env.APP_VERSION }} | |
| name: 🌟 Hypixel Cry Fabric ${{ env.MC }} v${{ env.APP_VERSION }} 🌟 | |
| body: | | |
|    | |
| ## 👏 Contributors Hall of Fame | |
| Special thanks to our amazing contributors who made this release possible: | |
| - **@Nekiplay** - Core improvements and feature implementations | |
| - **@KreedMan** - Features tester | |
| files: | | |
| ./build/libs/*.jar |