From b1833abfd54067653f2f2ccb0d44a111667731e8 Mon Sep 17 00:00:00 2001 From: supercoolspy <66487448+supercoolspy@users.noreply.github.com> Date: Sun, 3 Nov 2024 09:27:38 +0000 Subject: [PATCH] fix: use correct actions env var name in Hangar publish.yml (#494) --- docs/misc/hangar-publishing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/misc/hangar-publishing.md b/docs/misc/hangar-publishing.md index fd2ccb45..8b125e92 100644 --- a/docs/misc/hangar-publishing.md +++ b/docs/misc/hangar-publishing.md @@ -221,6 +221,6 @@ jobs: - name: Publish env: # Make sure you have added a repository secret in the repository's settings - HANGAR_TOKEN: ${{ secrets.HANGAR_API_TOKEN }} + HANGAR_API_TOKEN: ${{ secrets.HANGAR_API_TOKEN }} run: ./gradlew build publishPluginPublicationToHangar --stacktrace ```