Skip to content

Commit

Permalink
fix(build): fix github-release
Browse files Browse the repository at this point in the history
Signed-off-by: Teclib <skita@teclib.com>
  • Loading branch information
stonebuzz committed Nov 18, 2019
1 parent f6e6c6d commit 4236d2e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ci/scripts/ci_github_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,22 +38,22 @@ sudo zip -r $CIRCLE_ARTIFACTS/kotlin_example_code.zip example_kotlin*
# Update release name
yarn github-release edit \
--user $GH_USER \
--repo $CIRCLE_PROJECT_REPONAME \
--repo "$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME" \
--tag ${GIT_TAG} \
--name "Inventory Engine v${GIT_TAG}" \

# Upload example code release
yarn github-release upload \
--user $GH_USER \
--repo $CIRCLE_PROJECT_REPONAME \
--repo "$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME" \
--tag ${GIT_TAG} \
--name "java_example.zip" \
--file $CIRCLE_ARTIFACTS/java_example_code.zip

# Upload example code release
yarn github-release upload \
--user $GH_USER \
--repo $CIRCLE_PROJECT_REPONAME \
--repo "$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME" \
--tag ${GIT_TAG} \
--name "kotlin_example.zip" \
--file $CIRCLE_ARTIFACTS/kotlin_example_code.zip

0 comments on commit 4236d2e

Please sign in to comment.