Skip to content

Commit

Permalink
Fix naming error in build docker script
Browse files Browse the repository at this point in the history
  • Loading branch information
David Mang committed Sep 1, 2024
1 parent ed9ff70 commit 9dff50f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ jobs:
push: true
tags: ${{ steps.meta.outputs.tags }}
build-args: |
"VITE_API_URL=${{ var.VITE_API_URL }}"
"VITE_ENABLE_TRACKING"=${{ var.VITE_ENABLE_TRACKING }}"
"VITE_API_URL=${{ vars.VITE_API_URL }}"
"VITE_ENABLE_TRACKING"=${{ vars.VITE_ENABLE_TRACKING }}"
- id: output-tag-client
run: |
Expand Down
1 change: 1 addition & 0 deletions server/insights/services/commonWordAnalyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

cachedStopWords = stopwords.words("english")

# Handler to find common words in messages of users
def handle_array_common_word(array, variant):
textList = []
formattedTextList = []
Expand Down

0 comments on commit 9dff50f

Please sign in to comment.