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
+108Lines changed: 108 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -368,6 +368,114 @@ except Exception as e:
368
368
print(f"Transaction error: {e}")
369
369
```
370
370
371
+
## 🚀 CI/CD Pipeline Integration
372
+
373
+
### 🔄 Using in GitHub Actions or Other CI/CD Pipelines
374
+
375
+
For CI/CD environments where you can't use traditional environment variables or service account files, you can pass the credentials directly as a JSON string:
376
+
377
+
```python
378
+
from web3_google_hsm.accounts.gcp_kms_account import GCPKmsAccount
0 commit comments