diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index 26e1489d6..3be72def8 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -49,5 +49,7 @@ jobs: - name: Release docs if: (github.ref == 'refs/heads/main') run: | - git remote set-url origin https://git:${{secrets.GITHUB_TOKEN}}@github.com/${{vars.GITHUB_REPOSITORY}}.git + git remote set-url origin https://git:${{GITHUB_TOKEN}}@github.com/${{GITHUB_REPOSITORY}}.git npm run release:docs + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}