Skip to content

Commit

Permalink
doc: Add "How to deploy Dev Site"
Browse files Browse the repository at this point in the history
Signed-off-by: Sangwan Kwon <sangwan.kwon@samsung.com>
  • Loading branch information
bitboom committed Jan 10, 2024
1 parent 68a8097 commit 46bd252
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions doc/dev-site.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
## How to deploy our developer site(dev-site)

### 1. Checkout to gh-pages which is the branch of dev-site
```sh
$ cd $(islet-project/islet)
$ git checkout gh-pages
```

### 2. Rebase to latest main branch
```sh
$ git rebase main
```

### 3. Generate dev-site docs
```sh
$ ./scripts/make_doc.sh
```

### 4. Commit the result docs
```sh
$ git add docs/*
$ git commit -s -m "Bump to latest main branch"
```

### 5. Deploy the docs to the remote site
```sh
$ git push origin gh-pages --force
```

That's it! You can check the status of deploy [here](https://github.com/islet-project/islet/actions).

0 comments on commit 46bd252

Please sign in to comment.