fabric-exporter/.github/workflows/modrinth.yml

23 lines
531 B
YAML
Raw Normal View History

2021-05-25 23:27:30 +02:00
name: Publish on Modrinth
on:
release:
2021-05-25 23:42:38 +02:00
types: [ created ]
2021-05-25 23:27:30 +02:00
jobs:
2021-05-25 23:55:38 +02:00
publish:
2021-05-25 23:27:30 +02:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2021-06-24 21:15:04 +02:00
- name: Set up JDK 16
2021-05-25 23:27:30 +02:00
uses: actions/setup-java@v2
with:
2021-06-24 21:15:04 +02:00
java-version: '16'
2021-05-25 23:27:30 +02:00
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle and publish on Modrinth
run: ./gradlew publish
2021-05-25 23:46:15 +02:00
env:
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}