-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix GitHub Actions Authentication Error #1
base: master
Are you sure you want to change the base?
Conversation
Rollback Files For Sweep
|
Sandbox Executions |
Important Auto Review SkippedBot user detected. To trigger a single review, invoke the Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChat with CodeRabbit Bot (
|
…introduction (langchain-ai#16568) - **Description:** Adding Baichuan Text Embedding Model and Baichuan Inc introduction. Baichuan Text Embedding ranks #1 in C-MTEB leaderboard: https://huggingface.co/spaces/mteb/leaderboard Co-authored-by: BaiChuanHelper <wintergyc@WinterGYCs-MacBook-Pro.local>
PR Feedback (click)
I created this PR to fix the failing GitHub Actions.## Description
This PR fixes the authentication error in the GitHub Actions workflow. The error was due to the workflow specifying both "workload_identity_provider" and "credentials_json" in the "google-github-actions/auth" action. According to the error message, the workflow should specify exactly one of these parameters.
The changes in this PR involve modifying the GitHub Actions workflow file to correctly specify the authentication parameters for the "google-github-actions/auth" action. This involved either specifying the "workload_identity_provider" or the "credentials_json", but not both. If these values are provided via GitHub secrets, the workflow file has been modified to correctly inject these secrets into the environment.
Summary of Changes