2021-05-25 23:27:30 +02:00
|
|
|
name: Publish on Modrinth
|
|
|
|
|
|
|
|
on:
|
|
|
|
release:
|
2021-05-25 23:39:47 +02:00
|
|
|
types: [ published ]
|
2021-05-25 23:27:30 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up JDK 11
|
|
|
|
uses: actions/setup-java@v2
|
|
|
|
with:
|
|
|
|
java-version: '11'
|
|
|
|
distribution: 'adopt'
|
|
|
|
- name: Grant execute permission for gradlew
|
|
|
|
run: chmod +x gradlew
|
|
|
|
- name: Build with Gradle and publish on Modrinth
|
|
|
|
run: ./gradlew publish
|