Skip to content

Merge pull request #202 from CMU-cabot/ros2-dev-bake #84

Merge pull request #202 from CMU-cabot/ros2-dev-bake

Merge pull request #202 from CMU-cabot/ros2-dev-bake #84

Workflow file for this run

name: Build Docker Image
on:
push:
branches: [ ros2, ros2-dev-bake ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Build docker image
run: |
curl -X POST \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token ${{ secrets.CABOT_BUILD_TOKEN}}" \
https://api.github.com/repos/CMU-cabot/cabot-build/dispatches \
-d '{"event_type": "build-push", "client_payload":{"repository": "${{ github.repository }}", "ref_name": "${{ github.ref_name }}"}}'
env:
PAT: ${{ secrets.CABOT_BUILD_TOKEN }}