Skip to content

Release

Release #1

Workflow file for this run

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
run: ./gradlew publish grabVersion # grabVersion stores the version in a special file that GitHub will read
- name: capture build artifacts
uses: actions/upload-artifact@v3
with:
name: Artifacts
path: build/libs/
- name: publish to Modrinth and Curseforge
uses: Kir-Antipov/mc-publish@v3.3
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: ${{ jobs.build.outputs.version }}

Check failure on line 52 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 52, Col: 17): Unrecognized named-value: 'jobs'. Located at position 1 within expression: jobs.build.outputs.version .github/workflows/release.yml (Line: 53, Col: 20): Unrecognized named-value: 'jobs'. Located at position 1 within expression: jobs.build.outputs.version
version: ${{ jobs.build.outputs.version }}
loaders: |
fabric
quilt
dependencies: |
fabric-api(required){modrinth:P7dR8mSH}{curseforge:306612}