project-auto-wizard 0.1.21 → 0.1.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ npx project-auto-wizard
|
|
|
17
17
|
[](package.json)
|
|
18
18
|
|
|
19
19
|
<!-- AUTO-VERSION-SECTION: DO NOT EDIT MANUALLY -->
|
|
20
|
-
## 최신 버전 : v0.1.
|
|
20
|
+
## 최신 버전 : v0.1.23 (2026-08-06)
|
|
21
21
|
|
|
22
22
|
[전체 버전 기록 보기](CHANGELOG.md)
|
|
23
23
|
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
@@ -322,7 +322,10 @@ jobs:
|
|
|
322
322
|
- name: Create GitHub Release
|
|
323
323
|
if: steps.gate.outputs.proceed == 'true' && steps.version.outputs.release_exists != 'true'
|
|
324
324
|
env:
|
|
325
|
-
|
|
325
|
+
# WORKFLOW_PAT으로 발행해야 release 이벤트가 후속 워크플로우(npm 배포 등)를 트리거한다.
|
|
326
|
+
# GITHUB_TOKEN이 만든 이벤트는 GitHub 정책상 다른 워크플로우를 깨우지 못한다.
|
|
327
|
+
# PAT이 없는 레포에서도 릴리스 자체는 계속 동작해야 하므로 기본 토큰으로 폴백한다.
|
|
328
|
+
GH_TOKEN: ${{ secrets.WORKFLOW_PAT || github.token }}
|
|
326
329
|
run: |
|
|
327
330
|
VERSION="${{ steps.version.outputs.version }}"
|
|
328
331
|
gh release create "v$VERSION" --title "v$VERSION" --notes-file notes.md
|