Skip to content

Commit

Permalink
docs: update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Karsei committed Sep 17, 2023
1 parent 742d533 commit 69dd943
Showing 1 changed file with 60 additions and 5 deletions.
65 changes: 60 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,61 @@ jobs:
#### 템플릿 1

* 커밋 메시지에 따라 버전 관리
* 태그 배포

> **의존성**
> ```shell
> $ npm install -D semantic-release @semantic-release/git
> ```
```json
{
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator"
]
}
```

#### 템플릿 2

* 커밋 메시지에 따라 버전 관리
* 태그 배포
* package.json 버전 동기화
* release 상시 배포

> **의존성**
> ```shell
> $ npm install -D semantic-release @semantic-release/git
> ```
```json
{
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": ["package.json"],
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
}
]
]
}
```

#### 템플릿 3

* 커밋 메시지에 따라 버전 관리
* 태그 배포
* package.json 버전 동기화
* release 배포

> **의존성**
> ```shell
Expand Down Expand Up @@ -151,11 +204,12 @@ jobs:
}
```

#### 템플릿 2
#### 템플릿 4

* 커밋 메시지에 따라 버전 관리
* 태그 배포
* package.json 버전 동기화
* release 상시 배포
* release 배포
* CHANGELOG.md 파일 작성

> **의존성**
Expand Down Expand Up @@ -193,11 +247,12 @@ jobs:
}
```

#### 템플릿 3
#### 템플릿 5

* 커밋 메시지에 따라 버전 관리
* 태그 배포
* package.json 버전 동기화
* release 상시 배포
* release 배포
* CHANGELOG.md 파일 작성 & 템플릿 수정

> **Note**
Expand Down

0 comments on commit 69dd943

Please sign in to comment.