Mask the self-hosted runner's home path in release logs

This commit is contained in:
bryanthaboi
2026-08-01 16:45:34 -04:00
parent 9f072285a6
commit 7e7afeaf82
+6
View File
@@ -45,6 +45,12 @@ jobs:
runs-on: [self-hosted, macOS]
steps:
# The self-hosted runner lives under the machine owner's home
# directory; mask it first so absolute paths in every later step's
# output show up as *** in the public workflow logs.
- name: Mask runner paths
run: echo "::add-mask::$HOME"
- name: Checkout
uses: actions/checkout@v4
with: