diff options
author | 2021-05-17 08:46:30 -0700 | |
---|---|---|
committer | 2021-05-17 15:46:30 +0000 | |
commit | 9c240dcf9381d98126758491141c2f9505b4f172 (patch) | |
tree | 7e21b25654c1d5290535c52dbd9c5a1291495816 /.github/workflows | |
parent | 59613bea6ae9d5d1055e551ce4887d8b0ebd74bb (diff) | |
download | notion-9c240dcf9381d98126758491141c2f9505b4f172.tar.gz notion-9c240dcf9381d98126758491141c2f9505b4f172.tar.zst notion-9c240dcf9381d98126758491141c2f9505b4f172.zip |
ci: adding doc build step (#10)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ce57b95..a68d7f4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,3 +41,9 @@ jobs: with: command: test args: --all-features + - name: Docs + uses: actions-rs/cargo@v1 + env: + NOTION_API_TOKEN: ${{ secrets.NOTION_API_TOKEN }} + with: + command: doc |