Release #5
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: release | |
on: workflow_dispatch | |
jobs: | |
build: | |
strategy: | |
matrix: | |
java: [ 17 ] | |
runs-on: ubuntu-latest | |
env: | |
MAVEN_TYPE: releases | |
MAVEN_USER: ${{ secrets.MAVEN_USER }} | |
MAVEN_PASS: ${{ secrets.MAVEN_PASS }} | |
outputs: | |
version: ${{ steps.publish.outputs.version }} | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
- name: make gradle wrapper executable | |
run: chmod +x ./gradlew | |
- name: setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
cache: gradle | |
- name: publish | |
id: publish | |
# build to create artifacts for upload to GitHub | |
# publish publishes to maven | |
# grabVersion stores the version as an output | |
run: ./gradlew build publish grabVersion | |
- name: capture build artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Artifacts | |
path: build/libs/ | |
- name: publish to Modrinth and Curseforge | |
uses: Kir-Antipov/[email protected] | |
with: | |
modrinth-id: tEJPA4Ty | |
modrinth-token: ${{ secrets.MODRINTH_TOKEN }} | |
curseforge-id: 696251 | |
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }} | |
modrinth-featured: false # leave it to auto featuring | |
name: ${{ steps.publish.outputs.version }} | |
version: ${{ steps.publish.outputs.version }} | |
loaders: | | |
fabric | |
quilt | |
dependencies: | | |
fabric-api(required){modrinth:P7dR8mSH}{curseforge:306612} |