Skip to content

chore(deps): update release-drafter/release-drafter action to v6 #272

chore(deps): update release-drafter/release-drafter action to v6

chore(deps): update release-drafter/release-drafter action to v6 #272

Workflow file for this run

name: Sourcegraph
on:
push:
branches:
- main
pull_request:
jobs:
lsif:
runs-on: ubuntu-latest
name: "Upload SCIP"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v3
with:
distribution: "temurin"
cache: "sbt"
java-version: 17
- run: sbt dumpVersion publishLocal
- run: echo "addSbtPlugin(\"com.sourcegraph\" % \"sbt-sourcegraph\" % \"$(cat VERSION)\")" > project/sourcegraph_generated.sbt
- run: sbt sourcegraphEnable sourcegraphScip
- run: yarn global add @sourcegraph/src
- run: |
mv target/sbt-sourcegraph/index.scip index.scip
src code-intel upload "-commit=${GITHUB_SHA}" "-github-token=${GITHUB_TOKEN}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}