Merge pull request #851 from Faakhir30/patch-1 #351
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/[email protected] | |
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 }}" |