diff --git a/.github/workflows/tapps-quality.yml b/.github/workflows/tapps-quality.yml index c6335558..08d8b6d6 100644 --- a/.github/workflows/tapps-quality.yml +++ b/.github/workflows/tapps-quality.yml @@ -32,6 +32,14 @@ jobs: with: fetch-depth: 0 + - name: Auth private git deps + env: + REPORTLAB_READ_PAT: ${{ secrets.REPORTLAB_READ_PAT }} + run: | + if [ -n "$REPORTLAB_READ_PAT" ]; then + git config --global url."https://x-access-token:${REPORTLAB_READ_PAT}@github.com/".insteadOf "https://github.com/" + fi + - name: Set up uv uses: astral-sh/setup-uv@v7 with: @@ -59,6 +67,14 @@ jobs: - name: Checkout uses: actions/checkout@v7 + - name: Auth private git deps + env: + REPORTLAB_READ_PAT: ${{ secrets.REPORTLAB_READ_PAT }} + run: | + if [ -n "$REPORTLAB_READ_PAT" ]; then + git config --global url."https://x-access-token:${REPORTLAB_READ_PAT}@github.com/".insteadOf "https://github.com/" + fi + - name: Set up uv uses: astral-sh/setup-uv@v7 with: