Skip to content

Commit

Permalink
Fix scheduled build
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich committed Aug 24, 2024
1 parent 5d7296c commit ea7c433
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci-jazzy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,14 @@ jobs:
container:
image: ${{ matrix.docker-image }}
steps:
- uses: actions/checkout@v4
- name: Checkout code
if: github.event_name != 'schedule'
uses: actions/checkout@v4
- name: Checkout code for scheduled workflow
if: github.event_name == 'schedule'
uses: actions/checkout@v4
with:
ref: jazzy
- name: Setup colcon workspace
id: configure
shell: bash
Expand Down

0 comments on commit ea7c433

Please sign in to comment.