From 9ebb94ac0b92d4899739c814896dd766f5596b2b Mon Sep 17 00:00:00 2001 From: Charles Frye Date: Sat, 21 Sep 2024 04:41:53 +0000 Subject: [PATCH] different pattern for private repo clone --- .github/workflows/build-docs.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 674ccdf4..732f0cda 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -33,10 +33,10 @@ jobs: uv pip install --system setuptools wheel - name: Clone Modal monorepo - run: git clone https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/modal-labs/modal.git ../modal - # env: - # GIT_HTTP_USER: ${{ secrets.GH_PAT }} - # GIT_HTTP_PASSWORD: ${{ secrets.GH_PAT }} + run: git clone https://github.com/modal-labs/modal.git ../modal + env: + GIT_HTTP_USER: ${{ secrets.GH_PAT }} + GIT_HTTP_PASSWORD: ${{ secrets.GH_PAT }} - name: Install requirements.dev.txt from monorepo run: |