Skip to content

Commit

Permalink
Merge pull request #330 from IATI/new_environment_variable
Browse files Browse the repository at this point in the history
deployment: populate SOLR_PARALLEL_PROCESSES from variable on Github repo
  • Loading branch information
simon-20 authored May 15, 2024
2 parents e7b3e8e + 420cb04 commit 1015a65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ env:
SOLR_API_URL: ${{ secrets.DEV_SOLR_API_URL }}
SOLR_USER: ${{ secrets.DEV_SOLR_USER }}
SOLR_PASSWORD: ${{ secrets.DEV_SOLR_PASSWORD }}
SOLR_PARALLEL_PROCESSES: 10
SOLR_PARALLEL_PROCESSES: ${{ vars.DEV_SOLR_PARALLEL_PROCESSES }}
DB_USER: ${{ secrets.DB_USER }}
DB_PASS: ${{ secrets.DB_PASS }}
DB_HOST: ${{ secrets.DB_HOST }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ env:
SOLR_API_URL: ${{ secrets.PROD_SOLR_API_URL }}
SOLR_USER: ${{ secrets.PROD_SOLR_USER }}
SOLR_PASSWORD: ${{ secrets.PROD_SOLR_PASSWORD }}
SOLR_PARALLEL_PROCESSES: 5
SOLR_PARALLEL_PROCESSES: ${{ vars.PROD_SOLR_PARALLEL_PROCESSES }}
DB_USER: ${{ secrets.PROD_DB_USER }}
DB_PASS: ${{ secrets.PROD_DB_PASS }}
DB_HOST: ${{ secrets.PROD_DB_HOST }}
Expand Down

0 comments on commit 1015a65

Please sign in to comment.