Skip to content
This repository has been archived by the owner on Oct 20, 2024. It is now read-only.

Commit

Permalink
almost done
Browse files Browse the repository at this point in the history
  • Loading branch information
melontini committed Feb 11, 2023
1 parent d3f3453 commit 6068a50
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
on:
push:
tags:
- 'v*'

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v2
- name: validate gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: setup jdk 17
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: 17
- name: make gradle wrapper executable
run: chmod +x ./gradlew
- name: build
run: ./gradlew build
- name: Publish Minecraft Mods
uses: Kir-Antipov/[email protected]
with:
version-type: beta
modrinth-id: fLAsXzkA
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}
modrinth-featured: true
modrinth-unfeature-mode: subset
modrinth-dependencies: |
fabric-api | depends | *
curseforge-id: 825157
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }}
curseforge-dependencies: |
fabric-api | depends | *
game-versions: |
1.19.2
loaders: |
fabric
changelog-file: CHANGELOG.md

java: |
17
Empty file added CHANGELOG.md
Empty file.

0 comments on commit 6068a50

Please sign in to comment.