Version 1.0.0 #2
Workflow file for this run
This file contains 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: Publish the mod | |
on: | |
release: | |
types: [published] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
cache-read-only: false | |
- name: Build with Gradle | |
run: ./gradlew build | |
env: | |
DISABLE_PROPERTIES_UPDATE: true | |
- name: Upload to Modrinth | |
run: ./gradlew modrinth | |
env: | |
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }} | |
VERSION_NAME: ${{ github.event.release.name }} | |
VERSION_IS_PRERELEASE: ${{ github.event.release.prerelease }} | |
VERSION_CHANGELOG: ${{ github.event.release.body }} | |
- name: Publish to Maven | |
run: ./gradlew publishMavenPublicationToOffsetMonkey538Repository | |
env: | |
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} | |
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} | |
- name: Upload to GitHub | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: build/libs/*.jar |