fix: Add checkout step before using local actions

The workflow needs to checkout the repository before using local actions like setup-docker. This resolves the 'Can't find action.yml' error.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Maxime Beauchemin
2025-08-23 16:52:41 -07:00
parent 71497054a8
commit e19841fc46

View File

@@ -89,6 +89,12 @@ jobs:
echo "deploy_needed=$DEPLOY" >> $GITHUB_OUTPUT
echo "pr_number=$PR_NUM" >> $GITHUB_OUTPUT
- name: Checkout repository for local actions
if: steps.check.outputs.build_needed == 'true'
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup Docker Environment
if: steps.check.outputs.build_needed == 'true'
uses: ./.github/actions/setup-docker