We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57ecea7 commit ba386dcCopy full SHA for ba386dc
3 files changed
.github/workflows/nextjs.yml
@@ -31,9 +31,13 @@ jobs:
31
steps:
32
- name: Checkout
33
uses: actions/checkout@v4
34
+ - name: Clone another repository into a subdirectory
35
+ uses: actions/checkout@v4
36
with:
- submodules: true # Fetch submodules
- fetch-depth: 0 # Required to get all Git history for submodules
37
+ repository: "raitucarp/posts"
38
+ path: "_posts"
39
+ token: ${{ secrets.GITHUB_TOKEN }}
40
+ ref: "main"
41
- name: Detect package manager
42
id: detect-package-manager
43
run: |
.gitignore
@@ -39,3 +39,4 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts
+_posts
.gitmodules
0 commit comments