Skip to content

Commit d7e8774

Browse files
committed
Fix: includes
1 parent 04aff13 commit d7e8774

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

tutorials/trusted-publishing.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107

108108
Notice that above, you provide a version for each action step. `action/checkout@v5` tells GitHub to use version 5 of the checkout action. The checkout action checks out the code from your repository. In this case, the code will be used to build your package.
109109

110-
Next, you will learn about an even better way to secure your workflow
110+
Next, you will learn about a better way to secure (or "harden") your workflow
111111

112112
### Step 4: Secure the GitHub Actions workflow
113113

@@ -132,6 +132,13 @@ date. Once Dependabot is enabled, it will update these hashes for you in the fut
132132

133133
Thus, the workflow that you should use should be similar to:
134134

135+
```{literalinclude} ../examples/pure-hatch/.github/release.yml
136+
:language: python
137+
:lines: 10-20
138+
139+
```
140+
141+
135142
```yaml}
136143
jobs:
137144
build_package:

0 commit comments

Comments
 (0)