We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c9c270 commit 03cea75Copy full SHA for 03cea75
.github/workflows/release.yaml
@@ -30,6 +30,8 @@ jobs:
30
python3 -m pip install uv==0.10.6 --user
31
- name: Build
32
run: uv build
33
+ env:
34
+ FRAG_VERSION: ${{ github.ref_name }}
35
- name: Store the distribution
36
uses: actions/upload-artifact@v5
37
with:
setup.py
@@ -12,7 +12,7 @@
12
13
setup(
14
name="xchem-frag",
15
- version=environ.get("GITHUB_REF_NAME", "1.0.0"),
+ version=environ.get("FRAG_VERSION", "0.0.0"),
16
description="Library for fragment based analysis",
17
long_description=long_description,
18
# The project's main homepage.
0 commit comments