Skip to content

Commit

Permalink
Added environement variables
Browse files Browse the repository at this point in the history
  • Loading branch information
arshdoda committed Jun 28, 2024
1 parent 19fcb41 commit aeb0626
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/dev_ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Set GOOGLE_APPLICATION_USER env
run: echo "GOOGLE_APPLICATION_USER=$(echo $GOOGLE_APPLICATION_USER | cut -c 1-6)" >> $GITHUB_ENV
- name: Set GOOGLE_APPLICATION_CREDENTIALS env
run: echo "GOOGLE_APPLICATION_CREDENTIALS=$(echo $GOOGLE_APPLICATION_CREDENTIALS | cut -c 1-6)" >> $GITHUB_ENV
- name: Install Linux dependencies
run: |
sudo apt update
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Set GOOGLE_APPLICATION_USER env
run: echo "GOOGLE_APPLICATION_USER=$(echo $GOOGLE_APPLICATION_USER | cut -c 1-6)" >> $GITHUB_ENV
- name: Set GOOGLE_APPLICATION_CREDENTIALS env
run: echo "GOOGLE_APPLICATION_CREDENTIALS=$(echo $GOOGLE_APPLICATION_CREDENTIALS | cut -c 1-6)" >> $GITHUB_ENV
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit aeb0626

Please sign in to comment.