Skip to content
This repository has been archived by the owner on Jan 11, 2022. It is now read-only.

Commit

Permalink
Fix release script env var file cat (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
etanshaul authored Dec 14, 2018
1 parent 03f687e commit e33c3a3
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions kokoro/unix/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,10 @@
## Release script that publishes our plugins to Github and Jetbrains plugin repository

## Export required environment variables
ANALYTICS_ID_PATH=${KOKORO_KEYSTORE_DIR}/72743_analytics_id
GITHUB_TOKEN_PATH=${KOKORO_KEYSTORE_DIR}/72743_paflynn_github_token
IJ_REPO_USERNAME_PATH=${KOKORO_KEYSTORE_DIR}/72743_ij_repo_username
IJ_REPO_PASSWORD_PATH=${KOKORO_KEYSTORE_DIR}/72743_ij_repo_password
export ANALYTICS_ID=$(cat ANALYTICS_ID_PATH)
export GITHUB_TOKEN=$(cat GITHUB_TOKEN_PATH)
export IJ_REPO_USERNAME=$(cat IJ_REPO_USERNAME_PATH)
export IJ_REPO_PASSWORD=$(cat IJ_REPO_PASSWORD_PATH)
export ANALYTICS_ID=$(cat ${KOKORO_KEYSTORE_DIR}/72743_analytics_id)
export GITHUB_TOKEN=$(cat ${KOKORO_KEYSTORE_DIR}/72743_paflynn_github_token)
export IJ_REPO_USERNAME=$(cat ${KOKORO_KEYSTORE_DIR}/72743_ij_repo_username)
export IJ_REPO_PASSWORD=$(cat ${KOKORO_KEYSTORE_DIR}/72743_ij_repo_password)

cd github/google-container-tools-intellij

Expand Down

0 comments on commit e33c3a3

Please sign in to comment.