From 4c4ff7e5afab1221bff00a74e9d5b16aea4f9d87 Mon Sep 17 00:00:00 2001 From: klemek Date: Fri, 1 May 2026 23:13:26 +0200 Subject: [PATCH] fix(actions): clone articles repo before build --- .github/workflows/deploy.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index fd57499..bf317b6 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -18,6 +18,12 @@ jobs: bun-version: latest - uses: actions/checkout@v6 - run: bun ci + - uses: actions/checkout@v6 + with: + repository: ${{ vars.ARTICLES_REPOSITORY }} + ref: main + token: ${{ github.token }} + path: ./articles - run: bun run build - uses: actions/upload-artifact@v3 with: