diff --git a/.github/workflows/upload-docs.yml b/.github/workflows/upload-docs.yml index 9bb6c82ec..e3bd897d4 100644 --- a/.github/workflows/upload-docs.yml +++ b/.github/workflows/upload-docs.yml @@ -13,10 +13,11 @@ jobs: steps: - uses: actions/checkout@v1 - - name: Build the site in the jekyll/builder container + - uses: actions-rs/toolchain@v1 + - name: Build the documentation with cargo run: | cargo doc --package deltachat --no-deps - - name: Upload + - name: Upload to rs.delta.chat uses: up9cloud/action-rsync@v1.3 env: USER: ${{ secrets.USERNAME }} diff --git a/.github/workflows/upload-ffi-docs.yml b/.github/workflows/upload-ffi-docs.yml index dce6c9131..28d5d92d3 100644 --- a/.github/workflows/upload-ffi-docs.yml +++ b/.github/workflows/upload-ffi-docs.yml @@ -13,10 +13,11 @@ jobs: steps: - uses: actions/checkout@v1 - - name: Build the site in the jekyll/builder container + - uses: actions-rs/toolchain@v1 + - name: Build the documentation with cargo run: | cargo doc --package deltachat_ffi --no-deps - - name: Upload + - name: Upload to cffi.delta.chat uses: up9cloud/action-rsync@v1.3 env: USER: ${{ secrets.USERNAME }}