Merge pull request #876 from plone/rtd-pr-test-2 #366
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/deploy training.plone.org | |
on: | |
push: | |
branches: | |
- "main" | |
workflow_dispatch: | |
jobs: | |
build_deploy: | |
runs-on: ubuntu-latest | |
environment: | |
name: training.plone.org | |
url: https://training.plone.org | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -q -r requirements.txt -c constraints.txt | |
pip freeze | |
- name: Prepare deploy | |
run: make deploy | |
- name: Deploy to server | |
id: deploy | |
uses: Pendect/action-rsyncer@v2.0.0 | |
env: | |
DEPLOY_KEY: ${{secrets.DEPLOY_KEY_TRAINING}} | |
with: | |
flags: "-avzr --delete" | |
options: "" | |
ssh_options: "-p ${{vars.DEPLOY_PORT_TRAINING}}" | |
src: "_build/html/" | |
dest: "${{vars.DEPLOY_USER_TRAINING}}@${{vars.DEPLOY_SERVER_TRAINING}}:${{vars.DEPLOY_PATH_TRAINING}}" | |
- name: Display status from deploy | |
run: echo "${{ steps.deploy.outputs.status }}" |