From fc35f9f918f0ddadbbf0f7c8788135c52ab5de2e Mon Sep 17 00:00:00 2001 From: ian_Cin Date: Wed, 15 May 2024 17:22:41 +0700 Subject: [PATCH] (bump:patch) push latest branch after update pointer (#64) * push latest branch after update pointer * force push update latest pointer * update docs --- .github/workflows/auto-bump-and-release.yaml | 5 ++++- docs/usage.md | 6 +++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/auto-bump-and-release.yaml b/.github/workflows/auto-bump-and-release.yaml index 51f08c6..7c66925 100644 --- a/.github/workflows/auto-bump-and-release.yaml +++ b/.github/workflows/auto-bump-and-release.yaml @@ -44,4 +44,7 @@ jobs: tag_name: ${{ steps.update-version.outputs.new_tag }} make_latest: true - name: Update latest branch - run: git branch -f latest tags/${{ steps.update-version.outputs.new_tag }} + run: | + git branch -f latest tags/${{ steps.update-version.outputs.new_tag }} + git checkout latest + git push -f diff --git a/docs/usage.md b/docs/usage.md index e976f8c..348e414 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -56,9 +56,9 @@ embedding model depending on how you set up Azure development. ```shell AZURE_OPENAI_ENDPOINT= AZURE_OPENAI_API_KEY= -OPENAI_API_VERSION=2024-02-15-preview -AZURE_OPENAI_CHAT_DEPLOYMENT=gpt-35-turbo -AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT=text-embedding-ada-002 +OPENAI_API_VERSION=2024-02-15-preview # could be different for you +AZURE_OPENAI_CHAT_DEPLOYMENT=gpt-35-turbo # change to your deployment name +AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT=text-embedding-ada-002 # change to your deployment name ``` ### Local models