Skip to content

Commit

Permalink
Update GitHub Actions workflow to include checkout step for artifact …
Browse files Browse the repository at this point in the history
…handling

- Added a checkout step using actions/checkout@v4 to the GitHub Actions workflow, ensuring the repository is checked out before downloading artifacts.
- This change improves the workflow's reliability by ensuring that the necessary codebase is available for subsequent steps in the CI/CD pipeline.
  • Loading branch information
Joachim Rosskopf committed Dec 29, 2024
1 parent a19e05d commit 1e56df1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,10 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Download Linux Artifacts
uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit 1e56df1

Please sign in to comment.