diff options
author | Joe Chen <jc@unknwon.io> | 2022-03-10 23:30:03 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-10 23:30:03 +0800 |
commit | aac91b3611005992ce230b3d784844339f34095d (patch) | |
tree | 3c70ab6755b2aa6080c7cf8ae18b464f7f0ebfc0 /.github/workflows | |
parent | 4ca87057f3da5d3b7befb8c2338288c7c1ec1a84 (diff) |
lsif: update upload endpoint (#6827)
Co-authored-by: Sourcegraph <batch-changes@sourcegraph.com>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/lsif.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/lsif.yml b/.github/workflows/lsif.yml index c77c089f..c6463ee1 100644 --- a/.github/workflows/lsif.yml +++ b/.github/workflows/lsif.yml @@ -21,8 +21,8 @@ jobs: uses: docker://sourcegraph/src-cli:latest with: args: lsif upload -github-token=${{ secrets.GITHUB_TOKEN }} - - name: Upload LSIF data to sourcegraph.unknwon.cn + - name: Upload LSIF data to cs.unknwon.dev continue-on-error: true uses: docker://sourcegraph/src-cli:latest with: - args: -endpoint=https://sourcegraph.unknwon.cn lsif upload -github-token=${{ secrets.GITHUB_TOKEN }} + args: -endpoint=https://cs.unknwon.dev lsif upload -github-token=${{ secrets.GITHUB_TOKEN }} |