From edcb79b58e0ddc40000766f0eae9b5e01d43a77d Mon Sep 17 00:00:00 2001 From: Trent Blackburn Date: Sat, 9 May 2026 23:06:14 -0400 Subject: [PATCH] ci: rename PS_GALLERY_KEY secret reference to PSGALLERY_API_KEY The env var fed to build.ps1 is already named PSGALLERY_API_KEY; this brings the GitHub Actions secret name into the same convention so future modules created from this template don't inherit the older PS_GALLERY_KEY name. Template doesn't publish, so no actual secret needs to exist. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/PublishModuleToPowerShellGallery.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PublishModuleToPowerShellGallery.yaml b/.github/workflows/PublishModuleToPowerShellGallery.yaml index ba1a622..ef7fd63 100644 --- a/.github/workflows/PublishModuleToPowerShellGallery.yaml +++ b/.github/workflows/PublishModuleToPowerShellGallery.yaml @@ -97,5 +97,5 @@ jobs: if: steps.check_release.outputs.exists == 'false' && steps.check_psgallery.outputs.exists == 'false' shell: pwsh env: - PSGALLERY_API_KEY: ${{ secrets.PS_GALLERY_KEY }} + PSGALLERY_API_KEY: ${{ secrets.PSGALLERY_API_KEY }} run: ./build.ps1 -Task Publish -Bootstrap