Mention tls_cacertfile in the release notes #471
Workflow file for this run
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
--- | |
name: Build documentation | |
"on": | |
workflow_dispatch: | |
push: | |
paths: | |
- 'doc/source/**' | |
- '.github/workflows/build-documentation.yml' | |
branches: | |
- main | |
pull_request: | |
paths: | |
- 'doc/source/**' | |
- '.github/workflows/build-documentation.yml' | |
jobs: | |
default: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- run: pip3 install -r requirements.txt | |
- run: sphinx-build -b html doc/source doc/build/html | |
- uses: SamKirkland/[email protected] | |
with: | |
local-dir: doc/build/html/ | |
password: ${{ secrets.FTP_PASSWORD }} | |
protocol: ftps | |
security: strict | |
server-dir: / | |
server: ${{ secrets.FTP_SERVER }} | |
username: ${{ secrets.FTP_USERNAME }} | |
if: | | |
github.repository == 'osism/release' && | |
github.ref == 'refs/heads/main' |