mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
25 lines
574 B
YAML
25 lines
574 B
YAML
|
name: Documentation
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
jobs:
|
||
|
update:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout the source code
|
||
|
uses: actions/checkout@master
|
||
|
- name: Install Python packages
|
||
|
run: |
|
||
|
pip3 install wheel
|
||
|
pip3 install setuptools
|
||
|
pip3 install pygithub
|
||
|
pip3 install pygithub3
|
||
|
- name: Deploy
|
||
|
if: github.repository == 'acemod/ACE3' && ! contains(github.event.head_commit.message, '[ci skip]')
|
||
|
env:
|
||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||
|
run: python3 tools/deploy.py
|