-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into add-speech-recognition
- Loading branch information
Showing
117 changed files
with
4,009 additions
and
2,049 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,6 +61,9 @@ jobs: | |
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Inject slug/short variables | ||
uses: rlespinasse/[email protected] | ||
|
||
- name: Build and Publish Docker Image with DB | ||
uses: docker/build-push-action@v5 | ||
with: | ||
|
@@ -70,8 +73,11 @@ jobs: | |
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
platforms: linux/amd64,linux/arm64 | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
build-args: | | ||
INCLUDE_DB=true | ||
PUBLIC_COMMIT_SHA=${{ env.GITHUB_SHA_SHORT }} | ||
build-and-publish-image-nodb: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
@@ -115,6 +121,9 @@ jobs: | |
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Inject slug/short variables | ||
uses: rlespinasse/[email protected] | ||
|
||
- name: Build and Publish Docker Image without DB | ||
uses: docker/build-push-action@v5 | ||
with: | ||
|
@@ -124,5 +133,8 @@ jobs: | |
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
platforms: linux/amd64,linux/arm64 | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
build-args: | | ||
INCLUDE_DB=false | ||
PUBLIC_COMMIT_SHA=${{ env.GITHUB_SHA_SHORT }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,9 @@ jobs: | |
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Inject slug/short variables | ||
uses: rlespinasse/[email protected] | ||
|
||
- name: Build and Publish HuggingChat image | ||
uses: docker/build-push-action@v5 | ||
with: | ||
|
@@ -45,6 +48,7 @@ jobs: | |
INCLUDE_DB=false | ||
APP_BASE=/chat | ||
PUBLIC_APP_COLOR=yellow | ||
PUBLIC_COMMIT_SHA=${{ env.GITHUB_SHA_SHORT }} | ||
deploy: | ||
name: Deploy on prod | ||
runs-on: ubuntu-latest | ||
|
Oops, something went wrong.