You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+54-5Lines changed: 54 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ from your **GitHub Workflows**.
25
25
-[Check for compliance issues](#check-for-compliance-issues)
26
26
-[Define a custom project name](#define-a-custom-project-name)
27
27
-[Install ScanCode.io from a repository branch](#install-scancodeio-from-a-repository-branch)
28
-
-[Run source to binary mapping using GitHub action template](#run-source-to-binary-mapping-using-github-action-template)
28
+
-[Run source to binary mapping](#run-source-to-binary-mapping)
29
29
-[Where does the scan results go?](#where-are-the-scan-results)
30
30
31
31
## Usage
@@ -227,18 +227,67 @@ Activate this behavior by enabling `check-compliance` and setting
227
227
scancodeio-repo-branch: "main"
228
228
```
229
229
230
-
### Run source to binary mapping using GitHub action template
231
-
1. Add job to build your binary and upload it as a GitHub actions artifact.
232
-
2. Add a job to run `map-deploy-to-develop` pipeline.
230
+
### Run source to binary mapping
231
+
232
+
Use this [workflow template](.github/workflows/map-deploy-to-develop-template.yml) for validating the integrity of open-source binary. It compares a project’s binary to its source code. Workflow will generate mapping between compiled binary and its original source code, which helps in spotting any malicious, unexpected, or otherwise undesirable code that may have made its way into the final binary.
233
+
234
+
#### To use follow these steps:
235
+
236
+
1. In your workflow add job to build binary and upload it as a GitHub actions artifact.
237
+
2. Now add a second job to run source binary mapping using [template](.github/workflows/map-deploy-to-develop-template.yml).
0 commit comments