Skip to content

Commit 6bcea3e

Browse files
committed
fix: ghr username and repo names
1 parent 3d1ab1f commit 6bcea3e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
steps:
117117
- attach_workspace:
118118
at: "."
119-
- run: ghr "${CIRCLE_TAG}" build/lib/py_sourcemap/*.so
119+
- run: ghr -u "${CIRCLE_USERNAME}" -r "${CIRCLE_PROJECT_REPONAME}"" "${CIRCLE_TAG}" build/lib/py_sourcemap/*.so
120120

121121
deploy36:
122122
docker:
@@ -125,7 +125,7 @@ jobs:
125125
steps:
126126
- attach_workspace:
127127
at: "."
128-
- run: ghr "${CIRCLE_TAG}" build/lib/py_sourcemap/*.so
128+
- run: ghr -u "${CIRCLE_USERNAME}" -r "${CIRCLE_PROJECT_REPONAME}"" "${CIRCLE_TAG}" build/lib/py_sourcemap/*.so
129129

130130
deploy37:
131131
docker:
@@ -134,7 +134,7 @@ jobs:
134134
steps:
135135
- attach_workspace:
136136
at: "."
137-
- run: ghr "${CIRCLE_TAG}" build/lib/py_sourcemap/*.so
137+
- run: ghr -u "${CIRCLE_USERNAME}" -r "${CIRCLE_PROJECT_REPONAME}"" "${CIRCLE_TAG}" build/lib/py_sourcemap/*.so
138138

139139
nightly:
140140
machine: true

0 commit comments

Comments
 (0)