Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
takara9 committed Jun 1, 2024
1 parent 1ea2ae9 commit 9ac9c3a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,25 @@ docker run stress-ng --cpu 2 --malloc-bytes 300M --malloc-zerofree
```


## GitHubでのリリース方法
メインブランチへ移動してコードを最新化する。そして、ブランチを削除

```
$ git checkout main
$ git pull
$ git branch -d update_branch
```


リリースするTAGを設定する。
ここで付与するTAGはコンテナイメージのタグになるので、リポジトリを確認して、タグ名を決めること。

```
TAG=1.x
$ git tag -a $TAG -m "version $TAG"
$ git push origin $TAG
```


## 参照資料
-- https://github.com/ColinIanKing/stress-ng

0 comments on commit 9ac9c3a

Please sign in to comment.