-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from openfoodfacts/issues/43a
Transposed staging and production
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ jobs: | |
echo "COMMON_NET_NAME=po_webnet" >> $GITHUB_ENV | ||
echo "MONGO_URI=mongodb://10.1.0.200:27017" >> $GITHUB_ENV | ||
echo "REDIS_URL=redis://redis:6379" >> $GITHUB_ENV | ||
echo "POSTGRES_SHM_SIZE=1g" >> $GITHUB_ENV | ||
echo "POSTGRES_SHM_SIZE=256m" >> $GITHUB_ENV | ||
- name: Set various variable for production deployment | ||
if: matrix.env == 'off-query-org' | ||
run: | | ||
|
@@ -47,7 +47,7 @@ jobs: | |
# mongodb and redis (through stunnel) | ||
echo "MONGO_URI=mongodb://10.1.0.102:27017" >> $GITHUB_ENV | ||
echo "REDIS_URL=redis://10.1.0.122:6379" >> $GITHUB_ENV | ||
echo "POSTGRES_SHM_SIZE=256m" >> $GITHUB_ENV | ||
echo "POSTGRES_SHM_SIZE=1g" >> $GITHUB_ENV | ||
- name: Wait for container build workflow | ||
uses: tomchv/[email protected] | ||
id: wait-build | ||
|