diff options
author | ᴜɴᴋɴᴡᴏɴ <u@gogs.io> | 2020-05-22 16:58:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-22 16:58:26 +0800 |
commit | cb406bb3500637ac7acdd7fd9adf2e11539a8dae (patch) | |
tree | 6dfbf9d98d5eb702364dfac2765e89dead876ff2 /.github | |
parent | 9bbe029c28b1d3b3b977c6bcca6af69852ac3584 (diff) |
lsif: upload data to dogfood instance (#6171)
Diffstat (limited to '.github')
-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 }} |