Skip to content

Commit

Permalink
fix branch for humble pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
svastits committed Dec 20, 2024
1 parent 40fb7e3 commit 419db95
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/industrial_ci_humble.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,17 @@ jobs:
if [[ "${{ github.event_name }}" == "schedule" ]] || { [[ "${{ github.event_name }}" == "push" ]] && [[ "${{ github.ref }}" != "refs/heads/humble" ]]; }; then
echo "ANALYZER=" >> $GITHUB_ENV
fi
- uses: actions/checkout@v2
- name: Checkout code
if: github.event.schedule != ''
uses: actions/checkout@v2
with:
fetch-depth: 0
ref: humble
- name: Checkout humble branch for scheduled runs
if: github.event.schedule == ''
uses: actions/checkout@v2
with:
fetch-depth: 0

# This step will fetch/store the directory used by ccache before/after the ci run
- uses: actions/cache@v4
Expand Down

0 comments on commit 419db95

Please sign in to comment.