Release #52
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: Release | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| version_type: | |
| description: 'The type of version to release (alpha | beta | release)' | |
| default: 'beta' | |
| required: true | |
| type: choice | |
| options: | |
| - "alpha" | |
| - "beta" | |
| - "release" | |
| permissions: | |
| contents: write | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v2 | |
| - name: Setup Java | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| - name: Setup Gradle Caches | |
| uses: actions/cache@v3 | |
| with: | |
| path: ~/.gradle/caches | |
| key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | |
| restore-keys: ${{ runner.os }}-gradle | |
| - name: Setup Gradle Wrapper | |
| run: chmod +x gradlew | |
| - name: Get Version | |
| id: gradle_properties | |
| uses: christian-draeger/read-properties@1.1.1 | |
| with: | |
| path: ./gradle.properties | |
| properties: "mod_version" | |
| - name: Build Project | |
| run: ./gradlew build --build-cache | |
| - name: Upload Forge Releases (Curse|Modrinth|Github) | |
| id: forge_release | |
| uses: Kir-Antipov/mc-publish@v3.3.0 | |
| with: | |
| curseforge-id: ${{ vars.CURSE_ID }} | |
| curseforge-token: ${{ secrets.CURSE_TOKEN }} | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| github-generate-changelog: true | |
| github-tag: "1.20.1-${{ steps.gradle_properties.outputs.mod_version }}" | |
| files: ./build/libs/!(*-@(dev|sources|dev-slim)).jar | |
| name: "Moni Labs ${{ steps.gradle_properties.outputs.mod_version }}" | |
| version: ${{ steps.gradle_properties.outputs.mod_version }} | |
| version-type: ${{ inputs.version_type }} | |
| changelog-file: changelog.md | |
| loaders: forge | |
| game-versions: 1.20.1 |