Skip to content

Devel

Devel #97

Workflow file for this run

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: Get Token
id: get_workflow_token
uses: tibdex/github-app-token@v2
with:
private_key: ${{ secrets.ICUB_TECH_IIT_APP_KEY }}
app_id: ${{ secrets.ICUB_TECH_IIT_APP_ID }}
installation_retrieval_mode: repository
installation_retrieval_payload: icub-tech-iit/code
- 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_APPS_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"}'