File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,8 @@ jobs:
116
116
steps :
117
117
- attach_workspace :
118
118
at : " ."
119
- - run : ghr -u "${CIRCLE_USERNAME}" -r "${CIRCLE_PROJECT_REPONAME}"" "${CIRCLE_TAG}" build/lib/py_sourcemap/*.so
119
+ - run : export GIT_TAG="$(git describe --tags $(git rev-list --tags --max-count=1))"
120
+ - run : ghr -u "${CIRCLE_USERNAME}" -r "${CIRCLE_PROJECT_REPONAME}" "${GIT_TAG}" build/lib/py_sourcemap/*.so
120
121
121
122
deploy36 :
122
123
docker :
@@ -125,7 +126,8 @@ jobs:
125
126
steps :
126
127
- attach_workspace :
127
128
at : " ."
128
- - run : ghr -u "${CIRCLE_USERNAME}" -r "${CIRCLE_PROJECT_REPONAME}"" "${CIRCLE_TAG}" build/lib/py_sourcemap/*.so
129
+ - run : export GIT_TAG="$(git describe --tags $(git rev-list --tags --max-count=1))"
130
+ - run : ghr -u "${CIRCLE_USERNAME}" -r "${CIRCLE_PROJECT_REPONAME}" "${GIT_TAG}" build/lib/py_sourcemap/*.so
129
131
130
132
deploy37 :
131
133
docker :
@@ -134,7 +136,8 @@ jobs:
134
136
steps :
135
137
- attach_workspace :
136
138
at : " ."
137
- - run : ghr -u "${CIRCLE_USERNAME}" -r "${CIRCLE_PROJECT_REPONAME}"" "${CIRCLE_TAG}" build/lib/py_sourcemap/*.so
139
+ - run : export GIT_TAG="$(git describe --tags $(git rev-list --tags --max-count=1))"
140
+ - run : ghr -u "${CIRCLE_USERNAME}" -r "${CIRCLE_PROJECT_REPONAME}" "${GIT_TAG}" build/lib/py_sourcemap/*.so
138
141
139
142
nightly :
140
143
machine : true
You can’t perform that action at this time.
0 commit comments