Update dev_build.yml #164
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 | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| java-version: 21 | |
| distribution: adopt | |
| - name: Make gradlew executable | |
| run: chmod +x ./gradlew | |
| - name: Build | |
| run: ./gradlew build | |
| - name: Archive Artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Artifacts | |
| path: ./build/libs/ | |
| - name: Release | |
| uses: marvinpinto/action-automatic-releases@latest | |
| with: | |
| repo_token: '${{ secrets.GITHUB_TOKEN }}' | |
| automatic_release_tag: "1.21.4_1.0.9.4" | |
| prerelease: true | |
| title: "1.21.4 | 1.0.9.4" | |
| files: | | |
| ./build/libs/*.jar |