Skip to content

Commit

Permalink
ci: try to fix CD (#5863)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoanFM committed May 11, 2023
1 parent a5eca83 commit e67e0e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ jobs:
RELEASE_VER=${{needs.mark-dev-N.outputs.releasever}}
INIT_FILE='jina/__init__.py'
DEV_VER=$RELEASE_VER".dev"$devdelta
sed -i '/'"${$RELEASE_VER}"'/s/.*/'"${DEV_VER}"'/' "${INIT_FILE}"
sed -i '/'"${RELEASE_VER}"'/s/.*/'"${DEV_VER}"'/' "${INIT_FILE}"
- name: Build wheels with setuptools-golang-build-manylinux-wheel
if: ${{ matrix.os == 'ubuntu-latest' }}
Expand Down Expand Up @@ -339,7 +339,7 @@ jobs:
RELEASE_VER=${{needs.mark-dev-N.outputs.releasever}}
INIT_FILE='jina/__init__.py'
DEV_VER=$RELEASE_VER".dev"$devdelta
sed -i '/'"${$RELEASE_VER}"'/s/.*/'"${DEV_VER}"'/' "${INIT_FILE}"
sed -i '/'"${RELEASE_VER}"'/s/.*/'"${DEV_VER}"'/' "${INIT_FILE}"
- name: Pre-release (.devN)
run: |
pip install twine wheel
Expand Down

0 comments on commit e67e0e7

Please sign in to comment.