mirror of
https://github.com/abhiTronix/vidgear.git
synced 2026-02-06 19:03:18 +00:00
💚 CI: Fixed CODECOV_TOKEN secret variables bug in Azure pipeline
This commit is contained in:
+3
-1
@@ -87,8 +87,10 @@ steps:
|
||||
shasum -a 256 -c codecov.SHA256SUM
|
||||
chmod +x codecov
|
||||
if [ "$(exit_code)" != "124" ]; then
|
||||
./codecov --verbose upload-process --fail-on-error -t ${{ secrets.CODECOV_TOKEN }} -f coverage.xml -C $(Build.SourceVersion) -B $(Build.SourceBranch) -b $(Build.BuildNumber);
|
||||
./codecov --verbose upload-process --fail-on-error -t $CODECOV_TOKEN -f coverage.xml -C $(Build.SourceVersion) -B $(Build.SourceBranch) -b $(Build.BuildNumber);
|
||||
else
|
||||
echo "Timeout test - Skipped Codecov!";
|
||||
fi
|
||||
env:
|
||||
CODECOV_TOKEN: $(CODECOV_TOKEN)
|
||||
displayName: Upload coverage to CodeCov
|
||||
|
||||
Reference in New Issue
Block a user