Skip to content

Commit

Permalink
fix: github action for x-th time
Browse files Browse the repository at this point in the history
  • Loading branch information
bresilla committed Oct 19, 2023
1 parent 90194d0 commit 6fb1e58
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/book.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: book

on:
release:
types: [created]

jobs:
deploy_site:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2

- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: 'latest'

- run: mdbook build book --dest-dir ../docs

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs
3 changes: 2 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name = "roc"
path = "src/main.rs"

[dependencies]
rustdds = { git = "https://github.com/jhelovuo/RustDDS.git" }
rustdds = "0.8.5"
tokio = { version = "1", features = ["full"] }
anyhow = "1.0.75"
clap = { version = "4.3.23", features = ["derive"] }
Expand Down

0 comments on commit 6fb1e58

Please sign in to comment.