Skip to content

Commit c0ab0ce

Browse files
committed
fix(build): fix github-release
Signed-off-by: Teclib <skita@teclib.com>
1 parent a59c923 commit c0ab0ce

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

ci/scripts/ci_github_release.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,23 +37,23 @@ sudo zip -r $CIRCLE_ARTIFACTS/kotlin_example_code.zip example_kotlin*
3737

3838
# Update release name
3939
yarn github-release edit \
40-
--user $GH_USER \
41-
--repo "$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME" \
40+
--user $CIRCLE_PROJECT_USERNAME \
41+
--repo $CIRCLE_PROJECT_REPONAME \
4242
--tag ${GIT_TAG} \
4343
--name "Inventory Engine v${GIT_TAG}" \
4444

4545
# Upload example code release
4646
yarn github-release upload \
47-
--user $GH_USER \
48-
--repo "$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME" \
47+
--user $CIRCLE_PROJECT_USERNAME \
48+
--repo $CIRCLE_PROJECT_REPONAME \
4949
--tag ${GIT_TAG} \
5050
--name "java_example.zip" \
5151
--file $CIRCLE_ARTIFACTS/java_example_code.zip
5252

5353
# Upload example code release
5454
yarn github-release upload \
55-
--user $GH_USER \
56-
--repo "$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME" \
55+
--user $CIRCLE_PROJECT_USERNAME \
56+
--repo $CIRCLE_PROJECT_REPONAME \
5757
--tag ${GIT_TAG} \
5858
--name "kotlin_example.zip" \
5959
--file $CIRCLE_ARTIFACTS/kotlin_example_code.zip

0 commit comments

Comments
 (0)