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:
29
29
uses : actions/setup-dotnet@v3
30
30
with :
31
31
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
32
46
- name : Install the report tool packages
33
47
if : steps.gitleaks.outcome != 'success'
34
48
run : |
35
- mono $(which nuget) nuget install "Syncfusion.Email" -source ${{ secrets.NexusFeedLink }} -ExcludeVersion
49
+ nuget install "Syncfusion.Email" -source ${{ secrets.NexusFeedLink }} -ExcludeVersion
36
50
dir $GITHUB_WORKSPACE/Syncfusion.Email/lib/netcoreapp3.1
37
51
dotnet $GITHUB_WORKSPACE/Syncfusion.Email/lib/netcoreapp3.1/GitleaksReportMail.dll ${{ secrets.CITEAMCREDENTIALS }} "$GITHUB_REF_NAME" ${{ secrets.NETWORKCREDENTIALS }} ${{ secrets.NETWORKKEY }} "$GITHUB_WORKSPACE" ${{ secrets.ORGANIZATIONNAME }}
38
52
exit 1
You can’t perform that action at this time.
0 commit comments