Skip to content

Merge pull request #4770 from deltachat/dependabot/cargo/thiserror-1.… #1362

Merge pull request #4770 from deltachat/dependabot/cargo/thiserror-1.…

Merge pull request #4770 from deltachat/dependabot/cargo/thiserror-1.… #1362

Workflow file for this run

# GitHub Actions workflow
# to build `deltachat_fii` crate documentation
# and upload it to <https://cffi.delta.chat/>
name: Build & Deploy Documentation on cffi.delta.chat
on:
push:
branches:
- master
- docs-gh-action
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the documentation with cargo
run: |
cargo doc --package deltachat_ffi --no-deps
- name: Upload to cffi.delta.chat
uses: up9cloud/[email protected]
env:
USER: ${{ secrets.USERNAME }}
KEY: ${{ secrets.KEY }}
HOST: "delta.chat"
SOURCE: "target/doc"
TARGET: "/var/www/html/cffi/"