Skip to content

Add return-by-value versions of cv2ros and ros2cv #5

Add return-by-value versions of cv2ros and ros2cv

Add return-by-value versions of cv2ros and ros2cv #5

Workflow file for this run

name: Submodule
on:
push:
branches: [ main ]
jobs:
update-submodule-branch:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Configure git
run: |
git config --global user.name "Raul Tapia"
git config --global user.email "[email protected]"
- name: Delete submodule branch
run: |
git push origin --delete submodule
continue-on-error: true
- name: Publish into submodule branch
run: |
mv include/rush/*.hpp .
rm -rf .github docs include .gitignore README.md LICENSE
git checkout -b submodule
git add .
git commit --amend -m "Auto-update RUSH"
git push origin submodule