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 9999030 commit f1914d1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci-iron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,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: iron
- name: Setup colcon workspace
id: configure
shell: bash
Expand Down

0 comments on commit f1914d1

Please sign in to comment.