File tree Expand file tree Collapse file tree 1 file changed +23
-1
lines changed
Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -84,9 +84,31 @@ bun run build
8484bun run rebuild
8585```
8686
87+ ## DEPLOYMENT
88+
89+ ** 배포는 GitHub Actions workflow_dispatch로만 진행**
90+
91+ 1 . package.json 버전은 수정하지 않음 (워크플로우에서 자동 bump)
92+ 2 . 변경사항 커밋 & 푸시
93+ 3 . GitHub Actions에서 ` publish ` 워크플로우 수동 실행
94+ - ` bump ` : major | minor | patch 선택
95+ - ` version ` : (선택) 특정 버전 지정 가능
96+
97+ ``` bash
98+ # 워크플로우 실행 (CLI)
99+ gh workflow run publish -f bump=patch
100+
101+ # 워크플로우 상태 확인
102+ gh run list --workflow=publish
103+ ```
104+
105+ ** 주의사항** :
106+ - ` bun publish ` 직접 실행 금지 (OIDC provenance 문제)
107+ - 로컬에서 버전 bump 하지 말 것
108+
87109## NOTES
88110
89111- ** No tests** : Test framework not configured
90- - ** No CI/CD** : GitHub workflows not present
112+ - ** CI/CD** : GitHub Actions publish workflow 사용
91113- ** Version requirement** : OpenCode >= 1.0.132 (earlier versions have config bugs)
92114- ** Multi-language docs** : README.md, README.en.md, README.ko.md
You can’t perform that action at this time.
0 commit comments