Skip to content

Commit ffe4c38

Browse files
authored
Update pypi-dev.yaml
1 parent 8853102 commit ffe4c38

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/pypi-dev.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,16 @@ jobs:
2121

2222
steps:
2323
- uses: actions/checkout@v3
24+
- name: Get version defined
25+
id: version
26+
run: echo "::set-output name=version::$(cat ./pyepsilla/vectordb/version.py |awk -F'"' '{print $(NF-1)}')"
27+
2428
- name: Bump version and push tag
2529
id: tag_version
2630
uses: mathieudutour/github-tag-action@v6.1
2731
with:
2832
github_token: ${{ secrets.PAT_TOKEN }}
29-
tag_prefix: ""
33+
custom_tag: ${{ steps.version.outputs.version }};
3034
dry_run: true
3135

3236
- name: Set up Python

0 commit comments

Comments
 (0)