Skip to content

Commit

Permalink
fix: Clone full repo history
Browse files Browse the repository at this point in the history
  • Loading branch information
shdwmtr committed Dec 10, 2024
1 parent 5e52cc6 commit 8dd9c69
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2
with:
submodules: true
persist-credentials: true # Ensures credentials are available for pushing changes

submodules: recursive # Clone submodules recursively
persist-credentials: true # Ensure credentials are available for pushing changes
fetch-depth: 0 # Clone full history for the repository and submodules

- name: Set up Node.js
uses: actions/setup-node@v2
with:
Expand Down

0 comments on commit 8dd9c69

Please sign in to comment.