File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -29,10 +29,24 @@ jobs:
2929 uses : actions/setup-dotnet@v3
3030 with :
3131 dotnet-version : ' 3.1.x'
32+ - name : Install libssl
33+ if : steps.gitleaks.outcome != 'success'
34+ run : sudo apt-get install -y libssl1.1 || sudo apt-get install -y libssl3
35+ - name : Run Report Tool
36+ if : steps.gitleaks.outcome != 'success'
37+ run : |
38+ dotnet $GITHUB_WORKSPACE/Syncfusion.Email/lib/netcoreapp3.1/GitleaksReportMail.dll \
39+ ${{ secrets.CITEAMCREDENTIALS }} \
40+ "$GITHUB_REF_NAME" \
41+ ${{ secrets.NETWORKCREDENTIALS }} \
42+ ${{ secrets.NETWORKKEY }} \
43+ "$GITHUB_WORKSPACE" \
44+ ${{ secrets.ORGANIZATIONNAME }}
45+ exit 1
3246 - name : Install the report tool packages
3347 if : steps.gitleaks.outcome != 'success'
3448 run : |
35- mono $(which nuget) nuget install "Syncfusion.Email" -source ${{ secrets.NexusFeedLink }} -ExcludeVersion
49+ nuget install "Syncfusion.Email" -source ${{ secrets.NexusFeedLink }} -ExcludeVersion
3650 dir $GITHUB_WORKSPACE/Syncfusion.Email/lib/netcoreapp3.1
3751 dotnet $GITHUB_WORKSPACE/Syncfusion.Email/lib/netcoreapp3.1/GitleaksReportMail.dll ${{ secrets.CITEAMCREDENTIALS }} "$GITHUB_REF_NAME" ${{ secrets.NETWORKCREDENTIALS }} ${{ secrets.NETWORKKEY }} "$GITHUB_WORKSPACE" ${{ secrets.ORGANIZATIONNAME }}
3852 exit 1
You can’t perform that action at this time.
0 commit comments