diff options
-rw-r--r-- | .github/workflows/lsif.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/lsif.yml b/.github/workflows/lsif.yml index 1f7be270..ad91b875 100644 --- a/.github/workflows/lsif.yml +++ b/.github/workflows/lsif.yml @@ -10,9 +10,15 @@ jobs: uses: sourcegraph/lsif-go-action@master with: verbose: 'true' - - name: Upload LSIF data + - name: Upload LSIF data to sourcegraph.com uses: sourcegraph/lsif-upload-action@master continue-on-error: true with: endpoint: https://sourcegraph.com github_token: ${{ secrets.GITHUB_TOKEN }} + - name: Upload LSIF data to sourcegraph.unknwon.cn + uses: sourcegraph/lsif-upload-action@master + continue-on-error: true + with: + endpoint: https://sourcegraph.unknwon.cn + github_token: ${{ secrets.GITHUB_TOKEN }} |