Skip to content

Commit 6d0e4c4

Browse files
committed
docs: add deployment workflow documentation to AGENTS.md
1 parent 8f39575 commit 6d0e4c4

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

AGENTS.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,31 @@ bun run build
8484
bun 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

0 commit comments

Comments
 (0)