Skip to content

Commit

Permalink
chore: string check (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgrss committed May 26, 2022
1 parent f841a72 commit 8800fe8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,13 @@ jobs:
GW_VERSION2=$(echo $GW_VERSION | sed 's/ *$//g')
# Remove quotes
GW_VERSION3=$(echo $GW_VERSION2 | sed -e "s/'//g")
LIB_VERSION='v${GW_VERSION3}'
LIB_VERSION="v${GW_VERSION3}"
echo $GW_VERSION3
echo $LIB_VERSION
git clone https://github.com/jgrss/geowombat.git
cd geowombat/
# Publish the release
ghr -t "${GITHUB_TOKEN}" -u "${CIRCLE_PROJECT_USERNAME}" -r "${CIRCLE_PROJECT_REPONAME}" -c "${CIRCLE_SHA1}" "${LIB_VERSION}"
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} ${LIB_VERSION}
# Invoke jobs via workflows
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
Expand Down

0 comments on commit 8800fe8

Please sign in to comment.