Skip to content

Commit a373576

Browse files
authored
Merge pull request #189 from Wenzel/doc/fix_release_book
ci: fix release book
2 parents e85d649 + 1b7dd3c commit a373576

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -389,12 +389,12 @@ jobs:
389389
run: mdbook build doc
390390

391391
- name: Deploy 🚀
392-
uses: JamesIves/github-pages-deploy-action@releases/v3
392+
uses: JamesIves/github-pages-deploy-action@4.1.0
393393
with:
394-
BRANCH: gh-pages
394+
branch: gh-pages
395395
# note: FOLDER doesn't care about the job's working directory
396-
FOLDER: doc/book
397-
SINGLE_COMMIT: true
396+
folder: doc/book
397+
single_commit: true
398398

399399
publish:
400400
needs: release

doc/src/README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<p align="center">
88
<a href="https://github.com/Wenzel/libmicrovmi/actions?query=workflow%3ACI">
9-
<img src="https://github.com/Wenzel/libmicrovmi/workflows/CI/badge.svg" al="CI"/>
9+
<img src="https://github.com/Wenzel/libmicrovmi/workflows/CI/badge.svg" alt="CI"/>
1010
</a>
1111
<a href="https://crates.io/crates/microvmi">
1212
<img src="https://img.shields.io/crates/v/microvmi.svg" alt="crates.io"/>
@@ -22,10 +22,9 @@
2222
</a>
2323
</p>
2424
<p align="center">
25-
<a href="https://libmicrovmi.github.io/">
25+
<a href="https://wenzel.github.io/libmicrovmi/">
2626
<img src="https://img.shields.io/badge/Online-Documentation-green?style=for-the-badge&logo=gitbook" alt="online_docs"/>
2727
</a>
28-
2928
</p>
3029

3130
## Table of Contents
@@ -45,18 +44,20 @@ standing for `Unified` interface.
4544
_Virtual Machine Introspection_ has been around since [2003](https://www.ndss-symposium.org/ndss2003/virtual-machine-introspection-based-architecture-intrusion-detection/),
4645
yet the ecosystem is still heavily fragmented and lacks standards as well as interoperability.
4746

48-
See [Documentation: VMI Ecosystem Fragmentation](https://libmicrovmi.github.io/explanation/vmi_ecosystem.html)
47+
See [Documentation: VMI Ecosystem Fragmentation](https://wenzel.github.io/libmicrovmi/explanation/vmi_ecosystem.html)
4948

5049
The main objective is to provide the simplest virtual machine introspection abstraction, offering a standard API to interact with
5150
any VMI provider.
5251

52+
The documentation keeps track of libmicrovmi's [integration status](https://wenzel.github.io/libmicrovmi/reference/integration_status.html) for each VMI apps.
53+
5354
![libmicrovmi_image](https://user-images.githubusercontent.com/964610/110927584-1dfc4500-8326-11eb-9ed5-a0732296082b.png)
5455

5556
## Documentation
5657

5758
Our documentation is available in `doc/` as an [`mdbook`](https://rust-lang.github.io/mdBook/) 📖
5859

59-
[![online_docs](https://img.shields.io/badge/Online-Documentation-green)](https://libmicrovmi.github.io/)
60+
[![online_docs](https://img.shields.io/badge/Online-Documentation-green)](https://wenzel.github.io/libmicrovmi/)
6061

6162
To build the docs locally:
6263
~~~

0 commit comments

Comments
 (0)