-
-
Notifications
You must be signed in to change notification settings - Fork 92
41 lines (34 loc) · 1.1 KB
/
build_deploy_2022.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Build and deploy training documentation to 2022.training.plone.org
on:
push:
branches:
- "2022"
jobs:
build_deploy:
runs-on: ubuntu-latest
environment: 2022
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -q -r requirements.txt -c constraints.txt
- 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 ${{secrets.DEPLOY_PORT}}"
src: "_build/html/"
dest: "${{secrets.DEPLOY_USER_TRAINING}}@${{secrets.DEPLOY_SERVER_TRAINING}}:${{secrets.DEPLOY_PATH_TRAINING}}"
- name: Display status from deploy
run: echo "${{ steps.deploy.outputs.status }}"