docs: add dc_chat_is_protection_broken()
to 1.127.0 changelog
#1463
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
# 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: | |
- main | |
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/" |