Skip to content

[ex] added new robotics example #208

[ex] added new robotics example

[ex] added new robotics example #208

Workflow file for this run

# This files generates Python wheels for Linux
on:
push:
branches: 'master'
tags: '' # Restrict to blank tags
pull_request:
jobs:
dockercentos:
name: CentOS Docker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
clean: false
- run: |
chmod a+x scripts/docker/build_pybinding.sh
docker run --rm -v `pwd`:/io lebarsfa/manylinux2010_x86_64-for-codac /io/scripts/docker/build_pybinding.sh
ls wheelhouse
- uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
file: "wheelhouse/*.whl"
overwrite: true
tag_name: autotagname-${{ github.sha }}
if: (github.event_name != 'pull_request')&&(github.ref_name == 'master')