-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Sangwan Kwon <sangwan.kwon@samsung.com>
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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). |