Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix
Browse files Browse the repository at this point in the history
Signed-off-by: yangxuan <xuan.yang@zilliz.com>
XuanYang-cn committed Dec 13, 2023
1 parent 248bc06 commit 56fa828
Showing 4 changed files with 9 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/check_milvus_proto.yml
Original file line number Diff line number Diff line change
@@ -21,7 +21,8 @@ jobs:

- name: Fetch tags
run: |
git fetch --prune --unshallow --tags
git fetch --prune --unshallow
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: Install dependencies
run: |
5 changes: 5 additions & 0 deletions .github/workflows/code_checker.yml
Original file line number Diff line number Diff line change
@@ -19,6 +19,11 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Fetch tags
run: |
git fetch --prune --unshallow
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: check pyproject.toml install
run: |
pip install -e .
2 changes: 1 addition & 1 deletion .github/workflows/publish_dev_package.yml
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install poetry
- name: Install build
run: >-
python -m
pip install
2 changes: 1 addition & 1 deletion .github/workflows/publish_on_release.yml
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install poetry
- name: Install build
run: >-
python -m
pip install

0 comments on commit 56fa828

Please sign in to comment.