Skip to content

Commit

Permalink
Fix Publish workflow to use correct secret
Browse files Browse the repository at this point in the history
Was incorrectly changed from TOKEN to KEY in #179 and I didn't notice until the publish failed.
  • Loading branch information
Exaxxion authored May 24, 2024
1 parent e09aaac commit 785c6b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Publish to Curseforge
uses: gradle/gradle-build-action@v2
env:
CURSEFORGE_API_KEY: "${{secrets.CURSEFORGE_API_KEY}}"
CURSEFORGE_API_KEY: "${{secrets.CURSEFORGE_API_TOKEN}}"
CURSEFORGE_PROJECT_ID: "${{secrets.CURSEFORGE_PROJECT_ID}}"
CHANGELOG_LOCATION: "${{env.CHANGELOG_LOCATION}}"
with:
Expand Down

0 comments on commit 785c6b3

Please sign in to comment.