Skip to content

Commit

Permalink
fix: dummy var for pr (#1540)
Browse files Browse the repository at this point in the history
fix: dummy var for pr
  • Loading branch information
Sloox authored Jan 29, 2021
1 parent cb51bfd commit a0897c8
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/full_suite_integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,16 @@ jobs:
env:
GCLOUD_KEY: ${{ secrets.GCLOUD_KEY }}
run: |
GCLOUD_DIR="$HOME/.config/gcloud/"
mkdir -p "$GCLOUD_DIR"
echo "$GCLOUD_KEY" | base64 --decode > "$GCLOUD_DIR/application_default_credentials.json"
if [ "$RUNNER_OS" == "Windows" ]; then
set GCLOUD_DIR="%HOMEPATH%/.config/gcloud/"
mkdir %GCLOUD_DIR%
echo certutil -decode gcloud_key.txt %GCLOUD_DIR%application_default_credentials.json
else
GCLOUD_DIR="$HOME/.config/gcloud/"
mkdir -p "$GCLOUD_DIR"
echo "$GCLOUD_KEY" | base64 --decode > "$GCLOUD_DIR/application_default_credentials.json"
fi
shell: bash
- name: Gradle integration tests
uses: eskatos/gradle-command-action@v1
Expand Down

0 comments on commit a0897c8

Please # to comment.