Fix coverity token variable (#151)
This commit is contained in:
parent
edbeb0631d
commit
25cc816025
1 changed files with 2 additions and 2 deletions
4
.github/workflows/coverity.yml
vendored
4
.github/workflows/coverity.yml
vendored
|
@ -11,7 +11,7 @@ jobs:
|
||||||
- name: Download Coverity
|
- name: Download Coverity
|
||||||
run: |
|
run: |
|
||||||
cd ..
|
cd ..
|
||||||
wget -q https://scan.coverity.com/download/linux64 --post-data "token=${COVERITY_TOKEN}&project=r3" -O coverity-linux64.tgz
|
wget -q https://scan.coverity.com/download/linux64 --post-data "token=${{secrets.COVERITY_TOKEN}}&project=r3" -O coverity-linux64.tgz
|
||||||
mkdir coverity
|
mkdir coverity
|
||||||
tar xzf coverity-linux64.tgz --strip 1 -C coverity
|
tar xzf coverity-linux64.tgz --strip 1 -C coverity
|
||||||
echo "$(pwd)/coverity/bin" >> $GITHUB_PATH
|
echo "$(pwd)/coverity/bin" >> $GITHUB_PATH
|
||||||
|
@ -28,7 +28,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
tar czvf r3.tgz cov-int
|
tar czvf r3.tgz cov-int
|
||||||
curl \
|
curl \
|
||||||
--form token=${COVERITY_TOKEN} \
|
--form token=${{secrets.COVERITY_TOKEN}} \
|
||||||
--form email=yoanlin93+github@gmail.com \
|
--form email=yoanlin93+github@gmail.com \
|
||||||
--form file=@r3.tgz \
|
--form file=@r3.tgz \
|
||||||
--form version=${GITHUB_SHA} \
|
--form version=${GITHUB_SHA} \
|
||||||
|
|
Loading…
Reference in a new issue