We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8853102 commit ffe4c38Copy full SHA for ffe4c38
1 file changed
.github/workflows/pypi-dev.yaml
@@ -21,12 +21,16 @@ jobs:
21
22
steps:
23
- 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
+
28
- name: Bump version and push tag
29
id: tag_version
30
uses: mathieudutour/github-tag-action@v6.1
31
with:
32
github_token: ${{ secrets.PAT_TOKEN }}
- tag_prefix: ""
33
+ custom_tag: ${{ steps.version.outputs.version }};
34
dry_run: true
35
36
- name: Set up Python
0 commit comments