We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c1c454 commit 67d8a2dCopy full SHA for 67d8a2d
2 files changed
.github/workflows/ci.yml
@@ -61,4 +61,6 @@ jobs:
61
shell: bash -l {0}
62
working-directory: recipe
63
run: |
64
+ VERSION=$(python -c "from importlib.metadata import version; print(version('openhexa.sdk'))")
65
+ echo "Building version: $VERSION"
66
conda build . --channel conda-forge --channel bioconda
.github/workflows/publish.yml
@@ -30,7 +30,7 @@ jobs:
30
31
- name: Extract latest version from release files
32
33
- VERSION=$(python -c "from importlib.metadata import version; print(version('openhexa.sdk'))")
+ VERSION=$(awk -F\" '/^version =/ { print $2; exit }' pyproject.toml)
34
echo "VERSION=$VERSION" >> $GITHUB_ENV
35
echo "Extracted version: $VERSION"
36
0 commit comments