release_patch: v5.9.347 (#4387) #737
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SCIP | |
'on': | |
push: | |
branches-ignore: | |
- renovate/docker-sourcegraph-docker-insiders-images | |
jobs: | |
scip-go: | |
if: github.repository == 'sourcegraph/deploy-sourcegraph' | |
runs-on: ubuntu-latest | |
container: sourcegraph/scip-go | |
steps: | |
- uses: actions/checkout@50fbc622fc4ef5163becd7fab6573eac35f8462e | |
- name: Get src-cli | |
run: curl -L https://sourcegraph.com/.api/src-cli/src_linux_amd64 -o /usr/local/bin/src; | |
chmod +x /usr/local/bin/src | |
- name: Set directory to safe for git | |
run: git config --global --add safe.directory $GITHUB_WORKSPACE | |
- name: Generate SCIP data | |
run: scip-go | |
- name: Upload SCIP to Cloud | |
run: src code-intel upload -github-token='${{ secrets.GITHUB_TOKEN }}' -no-progress | |
env: | |
SRC_ENDPOINT: https://sourcegraph.com/ | |
SRC_ACCESS_TOKEN: ${{ secrets.SRC_ACCESS_TOKEN_DOTCOM }} | |
- name: Upload SCIP to S2 | |
run: src code-intel upload -github-token='${{ secrets.GITHUB_TOKEN }}' -no-progress | |
env: | |
SRC_ENDPOINT: https://sourcegraph.sourcegraph.com/ | |
SRC_ACCESS_TOKEN: ${{ secrets.SRC_ACCESS_TOKEN_S2 }} |