Devel #66
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: Devel | |
on: | |
workflow_dispatch: | |
schedule: | |
# Run the job once a week | |
- cron: '0 0 * * 0' | |
jobs: | |
build: | |
name: build devel and master images | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout docker-deployment-images | |
uses: actions/checkout@v4 | |
- name: Repository Dispatch for building images | |
uses: peter-evans/repository-dispatch@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
repository: ${{ github.repository }} | |
event-type: cron_trigger | |
client-payload: '{"version": "master", "type": "cron_trigger", "img_list": "superbuild superbuild-icubhead superbuild-icubhead-withuser superbuild-gazebo superbuild-ros2"}' |