Skip to content

Commit

Permalink
fix branch for humble pipe (#207)
Browse files Browse the repository at this point in the history
Co-authored-by: svastits <svastits.aron.gmail.com>
  • Loading branch information
Svastits authored and svastits committed Dec 20, 2024
1 parent 140c853 commit 59f7006
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 59f7006

Please sign in to comment.