We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8bd342 commit ca94b46Copy full SHA for ca94b46
1 file changed
CLAUDE.md
@@ -123,10 +123,12 @@ $script:ProtectedPaths = @(...) # Защищённые пути (никогд
123
### Публикация в PSGallery
124
125
```powershell
126
-# API ключ хранится отдельно (не в репозитории!)
127
-Publish-PSResource -Path .\WinClean.ps1 -Repository PSGallery -ApiKey $key
+# API ключ хранится в переменной окружения PSGALLERY_API_KEY (User scope)
+Publish-PSResource -Path .\WinClean.ps1 -Repository PSGallery -ApiKey $env:PSGALLERY_API_KEY
128
```
129
130
+**Где хранится ключ:** переменная окружения `PSGALLERY_API_KEY` (User scope)
131
+
132
### Стиль кода
133
134
- Функции: `Verb-Noun` (PowerShell conventions)
0 commit comments