mirror of
https://github.com/chatmail/core.git
synced 2026-04-06 07:32:12 +03:00
Also disable --progress. It is not disabled by default for backward compatibility, but solves the problem of lots of progress lines in the downloadable raw output: https://github.com/actions/checkout/pull/1067
27 lines
655 B
YAML
27 lines
655 B
YAML
name: Build & Deploy Documentation on py.delta.chat
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
show-progress: false
|
|
fetch-depth: 0 # Fetch history to calculate VCS version number.
|
|
- name: Build Python documentation
|
|
run: scripts/build-python-docs.sh
|
|
- name: Upload to py.delta.chat
|
|
uses: up9cloud/action-rsync@v1.3
|
|
env:
|
|
USER: delta
|
|
KEY: ${{ secrets.CODESPEAK_KEY }}
|
|
HOST: "lists.codespeak.net"
|
|
SOURCE: "dist/html/"
|
|
TARGET: "/home/delta/build/master"
|