Merge pull request #1682 from CBATeam/disFloats #245
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: Documentation | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the source code | |
uses: actions/checkout@v4 | |
- name: Install Python packages | |
run: | | |
pip3 install wheel | |
pip3 install setuptools | |
pip3 install pygithub | |
pip3 install pygithub3 | |
- name: Deploy | |
if: github.repository == 'CBATeam/CBA_A3' && ! contains(github.event.head_commit.message, '[ci skip]') | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: python3 tools/deploy.py |