Skip to content

Commit

Permalink
Add secrets to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vallbull committed Nov 27, 2023
1 parent d68bd16 commit ef85d05
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,11 @@ jobs:
- name: run bash script with all logic for starting compose and running tests
run: |
bash /src/ci/execute_test_with_docker_compose.sh "${{ matrix.value }}" "${{ job.container.network }}" "${{ env.compose_prj }}" \
WE_ARE_IN_CI=1
WE_ARE_IN_CI=1 \
GOOGLE_API_KEY="${{ secrets.EXT_GOOGLE_API_KEY }}" \
BITRIX_TOKEN="${{ secrets.EXT_BITRIX_TOKEN }}" \
BITRIX_DATALENS_TOKEN="${{ secrets.EXT_BITRIX_DATALENS_TOKEN }}" \
METRIKA_OAUTH="${{ secrets.EXT_METRIKA_OAUTH }}"
- name: Stop compose if provided
# We could not put this into bash script, since job could be cancelled by user request
if: always() # yes! always
Expand Down

0 comments on commit ef85d05

Please sign in to comment.