Skip to content

Bump version

Bump version #1

Workflow file for this run

name: 'Release'
on:
push:
tags:
- '*'
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
env:
CURSEFORGE_TOKEN: ${{ secrets.CURSEFORGE_TOKEN }}
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: '0'
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 17
cache: 'gradle'
- name: Build
run: ./gradlew build --no-daemon --max-workers 1
- name: Make Changelog
run: ./gradlew makeChangelog --no-daemon --max-workers 1
- name: Publish
run: ./gradlew publishMods --no-daemon --max-workers 1