Skip to content

publish

publish #3

Workflow file for this run

name: publish
on:
release:
types: [published]
jobs:
publish:
strategy:
matrix:
# Use these Java versions
java: [
17, # Current Java LTS & minimum supported by Minecraft
]
# and run on both Linux
os: [ubuntu-20.04]
runs-on: ${{ matrix.os }}
steps:
- name: checkout repository
uses: actions/checkout@v2
- name: validate gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: setup jdk ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: make gradle wrapper executable
run: chmod +x ./gradlew
- name: build
run: ./gradlew build
- uses: Kir-Antipov/mc-publish@v3.2
with:
# You don't need this section if you don't want to publish
# your assets to Modrinth
modrinth-id: dinnermod
modrinth-token: ${{ secrets.MODRINTH }}
# You don't need this section if you don't want to publish
# your assets to GitHub
github-token: ${{ secrets.GITHUB_TOKEN }}
github-generate-changelog: true