Read secrets directly into GitHub secrets from ENV_VARS #215
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request involves multiple changes focusing on the removal of
.env
file handling in GitHub Actions and updating the chat model deployment name. The most important changes include the removal of.env
handling steps from various action files and workflows and moving to loading the secrets directly into environment variables, and updating the chat model deployment name fromaoai
togpt-35-turbo
.Fixes #209
Removal of
.env
file handling:.github/actions/aml_real_deployment/action.yml
: Removed theENV_VARS
input and associated steps for creating and loading.env
files..github/actions/kubernetes_deployment/action.yml
: Removed steps for creating and loading.env
files..github/actions/webapp_deployment/action.yml
: Removed theENV_VARS
input and steps for converting.env
to environment variables..github/workflows/platform_cd_dev_workflow.yml
: Removed steps for creating and reading.env
files and updated the method to load secrets directly fromENV_VARS
. [1] [2] [3] [4].github/workflows/platform_ci_dev_workflow.yml
: Updated the method to load secrets directly fromENV_VARS
instead of creating.env
files.Update chat model deployment name:
chat_with_pdf/data/bert-paper-qna-1-line.jsonl
: ChangedCHAT_MODEL_DEPLOYMENT_NAME
fromaoai
togpt-35-turbo
.chat_with_pdf/data/bert-paper-qna-3-line.jsonl
: ChangedCHAT_MODEL_DEPLOYMENT_NAME
fromaoai
togpt-35-turbo
.chat_with_pdf/flows/evaluation/flow.dag.yaml
: Updateddeployment_name
fromaoai
togpt-35-turbo
in multiple nodes. [1] [2] [3]chat_with_pdf/flows/standard/flow.dag.yaml
: ChangedCHAT_MODEL_DEPLOYMENT_NAME
fromaoai
togpt-35-turbo
.