Signal Map - Fix position type in drawLine3d
(#1382)
#317
This file contains hidden or 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 | |
if: github.repository == 'IDI-Systems/acre2' && ! contains(github.event.head_commit.message, '[ci skip]') | |
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 | |
run: python3 tools/deploy.py | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |