Skip to content

Commit 1c465a0

Browse files
update coverity scan email (#871)
1 parent 37678b0 commit 1c465a0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/coverity_scan.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,15 @@ jobs:
3131
shell: bash
3232
env:
3333
COVERITY_TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}
34+
COVERITY_EMAIL: ${{ secrets.COVERITY_SCAN_EMAIL }}
3435
run: |
3536
export PATH="$PATH:${{env.cov_scan_path}}"
3637
cmake -S ./examples/cmake_example/ -B build
3738
cd build
3839
cov-build --dir cov-int make -j
3940
tar czvf gcc_freertos_kerenl_sample_build.tgz cov-int
4041
COV_SCAN_UPLOAD_STATUS=$(curl --form token=${COVERITY_TOKEN} \
41-
--form email=[email protected] \
42+
--form email=${COVERITY_EMAIL} \
4243
--form file=@gcc_freertos_kerenl_sample_build.tgz \
4344
--form version="Mainline" \
4445
--form description="FreeRTOS Kernel Nightly Scan" \

0 commit comments

Comments
 (0)