Skip to content

Commit

Permalink
added action for cf publishing :)
Browse files Browse the repository at this point in the history
  • Loading branch information
alterNERDtive committed Jun 23, 2023
1 parent 6a32456 commit fdc1b5e
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/create-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- name: Draft release
uses: ncipollo/release-action@v1
with:
token: ${{ secrets.RELEASE_TOKEN }}
artifacts: "build/libs/the_vault-tweaks-1.18.2-*.jar"
bodyFile: "CHANGELOG.md"
draft: true
43 changes: 43 additions & 0 deletions .github/workflows/publish-to-curseforge.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Publish to Curseforge on release

on:
release:
types: [published]

jobs:
build:
name: Publish to Curseforge
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF_NAME#release/}" >> $GITHUB_ENV

- name: Download release artifacts
run: gh release download ${{ github.ref_name }}

- name: Publish to Curseforge
uses: Kir-Antipov/[email protected]
with:
curseforge-id: 877136
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }}

files: *.jar

name: ""
version: 1.18.2-${{ env.RELEASE_VERSION }}
version-type: release
changelog-file: CHANGELOG.md

loaders: |
forge
game-versions: |
1.18.2
java: |
17
retry-attempts: 2
retry-delay: 10000
fail-mode: fail

0 comments on commit fdc1b5e

Please sign in to comment.