@@ -13,7 +13,8 @@ GPG key.
13
13
### git-sign
14
14
15
15
Use this action to create signed git artifacts:
16
- ``` markdown
16
+
17
+ ``` yaml
17
18
- name : " Create signed commit"
18
19
uses : mongodb/drivers-github-tools/garasign/git-sign@main
19
20
with :
@@ -41,7 +42,7 @@ option can be set to a truthy value to avoid unnecessary logins to artifactory.
41
42
42
43
This action is used to create detached signatures for files :
43
44
44
- ``` markdown
45
+ ` ` ` yaml
45
46
- name: "Create detached signature"
46
47
uses: mongodb/drivers-github-tools/garasign/gpg-sign@main
47
48
with:
@@ -59,7 +60,7 @@ option can be set to a truthy value to avoid unnecessary logins to artifactory.
59
60
60
61
You can also supply multiple space-separated filenames to sign a list of files :
61
62
62
- ``` markdown
63
+ ` ` ` yaml
63
64
- name: "Create detached signature"
64
65
uses: mongodb/drivers-github-tools/garasign/gpg-sign@main
65
66
with:
@@ -69,3 +70,23 @@ You can also supply multiple space-separated filenames to sign a list of files:
69
70
artifactory_username: ${{ secrets.ARTIFACTORY_USER }}
70
71
artifactory_password: ${{ secrets.ARTIFACTORY_PASSWORD }}
71
72
` ` `
73
+
74
+ # # Reporting tools
75
+
76
+ The following tools are meant to aid in generating Software Security Development Lifecycle
77
+ reports associated with a product release.
78
+
79
+ # ## Papertrail
80
+
81
+ This action will create a record of authorized publication on distribution channels.
82
+ By default it will create a "papertrail.txt" file in the current directory.
83
+
84
+ ` ` ` yaml
85
+ - name: "Create papertrail report"
86
+ uses: mongodb/drivers-github-tools/papertrail@main
87
+ with:
88
+ product_name: Mongo Python Driver
89
+ release_version: ${{ github.ref_name }}
90
+ filenames: $DIST_FILES
91
+ token: ${{ github.token }}
92
+ ` ` `
0 commit comments