Update and rename check_method_comparators.ttl to check_method_operat… #704
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: deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
cache: 'pip' | |
- run: pip install -r .acimov/requirements.txt | |
- run: python .acimov/publish.py | |
- name: rsync deployments | |
uses: burnett01/[email protected] | |
with: | |
switches: -a | |
path: public/ | |
remote_path: /var/www/aec3po/html | |
remote_host: ci.mines-stetienne.fr | |
remote_user: aec3po | |
remote_key: ${{ secrets.SSH_PRIVATE }} |