[Docs] Fix on the documentation preview deploy CI (#9109)
* Fix on the Docs deploy CI * Removed the docs build badge (RTD) * Update .github/workflows/docs_build.yml Co-authored-by: Lucas Saavedra Vaz <32426024+lucasssvaz@users.noreply.github.com> --------- Co-authored-by: Lucas Saavedra Vaz <32426024+lucasssvaz@users.noreply.github.com>
This commit is contained in:
parent
768719c68f
commit
5063cdd797
5 changed files with 40 additions and 16 deletions
10
.github/workflows/docs_build.yml
vendored
10
.github/workflows/docs_build.yml
vendored
|
|
@ -1,6 +1,13 @@
|
||||||
name: Documentation Build and Deploy CI
|
name: Documentation Build and Deploy CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- release/*
|
||||||
|
paths:
|
||||||
|
- 'docs/**'
|
||||||
|
- '.github/workflows/docs.yml'
|
||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
paths:
|
||||||
- 'docs/**'
|
- 'docs/**'
|
||||||
|
|
@ -9,7 +16,7 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
build-docs:
|
build-docs:
|
||||||
name: Build Documentation
|
name: Build ESP-Docs
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
|
|
@ -35,3 +42,4 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: docs
|
name: docs
|
||||||
path: docs
|
path: docs
|
||||||
|
|
||||||
|
|
|
||||||
19
.github/workflows/docs_deploy.yml
vendored
19
.github/workflows/docs_deploy.yml
vendored
|
|
@ -1,4 +1,4 @@
|
||||||
name: Documentation Build and Deploy Production CI
|
name: Documentation Build and Production Deploy CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|
@ -11,27 +11,28 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
deploy-prod-docs:
|
deploy-prod-docs:
|
||||||
name: Deploy Documentation Production
|
name: Deploy Documentation on Production
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
shell: bash
|
shell: bash
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
- uses: actions/setup-python@v2
|
- uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: '3.10'
|
python-version: '3.10'
|
||||||
- name: Deploy Preview
|
- name: Deploy Documentation
|
||||||
env:
|
env:
|
||||||
# Deploy to production server
|
# Deploy to production server
|
||||||
DOCS_BUILD_DIR: "${CI_PROJECT_DIR}/docs/_build/"
|
# DOCS_BUILD_DIR: "./docs/_build/"
|
||||||
DOCS_DEPLOY_PRIVATEKEY: ${{ secrets.DOCS_PROD_PRIVATEKEY }}
|
DOCS_DEPLOY_PRIVATEKEY: ${{ secrets.DOCS_PROD_PRIVATEKEY }}
|
||||||
DOCS_DEPLOY_PATH: ${{ secrets.DOCS_PROD_PATH }}
|
DOCS_DEPLOY_PATH: ${{ secrets.DOCS_PROD_PATH }}
|
||||||
DOCS_DEPLOY_SERVER: ${{ secrets.DOCS_PROD_SERVER }}
|
DOCS_DEPLOY_SERVER: ${{ secrets.DOCS_SERVER }}
|
||||||
DOCS_DEPLOY_URL_BASE: ${{ secrets.DOCS_PROD_URL_BASE }}
|
|
||||||
DOCS_DEPLOY_SERVER_USER: ${{ secrets.DOCS_PROD_USER }}
|
DOCS_DEPLOY_SERVER_USER: ${{ secrets.DOCS_PROD_USER }}
|
||||||
|
DOCS_DEPLOY_URL_BASE: ${{ secrets.DOCS_PROD_URL_BASE }}
|
||||||
|
# Deploy to preview server
|
||||||
run: |
|
run: |
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt install python3-pip python3-setuptools
|
sudo apt install python3-pip python3-setuptools
|
||||||
|
|
@ -43,4 +44,6 @@ jobs:
|
||||||
echo "Building the Docs..."
|
echo "Building the Docs..."
|
||||||
cd ./docs && build-docs -l en
|
cd ./docs && build-docs -l en
|
||||||
echo "Deploy the Docs..."
|
echo "Deploy the Docs..."
|
||||||
|
export DOCS_BUILD_DIR=$GITHUB_WORKSPACE/docs/
|
||||||
|
cd $GITHUB_WORKSPACE/docs
|
||||||
deploy-docs
|
deploy-docs
|
||||||
|
|
|
||||||
10
.github/workflows/docs_preview.yml
vendored
10
.github/workflows/docs_preview.yml
vendored
|
|
@ -1,4 +1,4 @@
|
||||||
name: Documentation Build and Deploy CI
|
name: Documentation Build and Preview Deploy CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|
@ -11,7 +11,7 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
deploy-preview-docs:
|
deploy-preview-docs:
|
||||||
name: Deploy Documentation Preview
|
name: Deploy Documentation
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
|
|
@ -26,12 +26,12 @@ jobs:
|
||||||
- name: Deploy Preview
|
- name: Deploy Preview
|
||||||
env:
|
env:
|
||||||
# Deploy to preview server
|
# Deploy to preview server
|
||||||
DOCS_BUILD_DIR: "${CI_PROJECT_DIR}/docs/_build/"
|
# DOCS_BUILD_DIR: "./docs/_build"
|
||||||
DOCS_DEPLOY_PRIVATEKEY: ${{ secrets.DOCS_KEY }}
|
DOCS_DEPLOY_PRIVATEKEY: ${{ secrets.DOCS_KEY }}
|
||||||
DOCS_DEPLOY_PATH: ${{ secrets.DOCS_PATH }}
|
DOCS_DEPLOY_PATH: ${{ secrets.DOCS_PATH }}
|
||||||
DOCS_DEPLOY_SERVER: ${{ secrets.DOCS_SERVER }}
|
DOCS_DEPLOY_SERVER: ${{ secrets.DOCS_SERVER }}
|
||||||
DOCS_DEPLOY_URL_BASE: ${{ secrets.DOCS_URL }}
|
|
||||||
DOCS_DEPLOY_SERVER_USER: ${{ secrets.DOCS_USER }}
|
DOCS_DEPLOY_SERVER_USER: ${{ secrets.DOCS_USER }}
|
||||||
|
DOCS_DEPLOY_URL_BASE: ${{ secrets.DOCS_URL }}
|
||||||
run: |
|
run: |
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt install python3-pip python3-setuptools
|
sudo apt install python3-pip python3-setuptools
|
||||||
|
|
@ -43,4 +43,6 @@ jobs:
|
||||||
echo "Building the Docs..."
|
echo "Building the Docs..."
|
||||||
cd ./docs && build-docs -l en
|
cd ./docs && build-docs -l en
|
||||||
echo "Deploy the Docs..."
|
echo "Deploy the Docs..."
|
||||||
|
export DOCS_BUILD_DIR=$GITHUB_WORKSPACE/docs/
|
||||||
|
cd $GITHUB_WORKSPACE/docs
|
||||||
deploy-docs
|
deploy-docs
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
# Arduino core for the ESP32, ESP32-S2, ESP32-S3, ESP32-C3, ESP32-C6 and ESP32-H2
|
# Arduino core for the ESP32, ESP32-S2, ESP32-S3, ESP32-C3, ESP32-C6 and ESP32-H2
|
||||||
|
|
||||||
 [](https://docs.espressif.com/projects/arduino-esp32/en/latest/?badge=latest)
|
 [](https://github.com/espressif/arduino-esp32/actions/workflows/lib.yml?link=http://https://github.com/espressif/arduino-esp32/blob/master/LIBRARIES_TEST.md)
|
||||||
[](https://github.com/espressif/arduino-esp32/actions/workflows/lib.yml?link=http://https://github.com/espressif/arduino-esp32/blob/master/LIBRARIES_TEST.md)
|
|
||||||
|
|
||||||
### Need help or have a question? Join the chat at [Gitter](https://gitter.im/espressif/arduino-esp32) or [open a new Discussion](https://github.com/espressif/arduino-esp32/discussions)
|
### Need help or have a question? Join the chat at [Gitter](https://gitter.im/espressif/arduino-esp32) or [open a new Discussion](https://github.com/espressif/arduino-esp32/discussions)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,15 @@
|
||||||
esp-docs==1.4.*
|
esp-docs==1.4.*
|
||||||
sphinx-copybutton==0.5.0
|
sphinx-copybutton==0.5.0
|
||||||
sphinx-tabs==3.2.0
|
sphinx-tabs==3.2.0
|
||||||
|
sphinxcontrib-actdiag==3.0.0
|
||||||
|
sphinxcontrib-applehelp==1.0.4
|
||||||
|
sphinxcontrib-blockdiag==3.0.0
|
||||||
|
sphinxcontrib-devhelp==1.0.2
|
||||||
|
sphinxcontrib-htmlhelp==2.0.1
|
||||||
|
sphinxcontrib-jsmath==1.0.1
|
||||||
|
sphinxcontrib-nwdiag==2.0.0
|
||||||
|
sphinxcontrib-qthelp==1.0.3
|
||||||
|
sphinxcontrib-seqdiag==3.0.0
|
||||||
|
sphinxcontrib-serializinghtml==1.1.5
|
||||||
|
sphinxcontrib-svg2pdfconverter==1.2.0
|
||||||
|
sphinxcontrib-wavedrom==3.0.4
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue