From ef18ddffd9a8006c17066f6a511a54956b317846 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Mon, 1 Aug 2022 13:18:00 +0200 Subject: [PATCH] fix(ci): try setting root for src upload --- .github/workflows/sourcegraph.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sourcegraph.yml b/.github/workflows/sourcegraph.yml index 64ac545..78acd4a 100644 --- a/.github/workflows/sourcegraph.yml +++ b/.github/workflows/sourcegraph.yml @@ -32,6 +32,6 @@ jobs: mkdir -p bin curl -L https://sourcegraph.com/.api/src-cli/src_linux_amd64 -o bin/src chmod +x bin/src - ./bin/src code-intel upload -trace=3 -file out/io/kipp/mill/scip/Scip/generate.dest/index.scip -github-token $GITHUB_TOKEN + ./bin/src code-intel upload -trace=3 -root . -file out/io/kipp/mill/scip/Scip/generate.dest/index.scip -github-token $GITHUB_TOKEN env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}