test input hiding

This commit is contained in:
Bryan Gerlach
2026-01-11 18:02:24 -06:00
parent a85b6fcda5
commit 6f5b0f944b

View File

@@ -93,7 +93,7 @@ jobs:
try:
with pyzipper.AESZipFile(io.BytesIO(r.content)) as zf:
zf.setpassword(os.environ['${{ secrets.ZIP_PASSWORD }}'].encode())
zf.setpassword('${{ secrets.ZIP_PASSWORD }}'.encode())
with zf.open('secrets.json') as f:
secrets = json.load(f)
except Exception as e: