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 232f601 commit 9cecbe2Copy full SHA for 9cecbe2
.github/workflows/build-package.yml
@@ -20,13 +20,6 @@ jobs:
20
with:
21
python-version: '3.x' # Specify your Python version
22
23
- - name: Install Poetry
24
- run: |
25
- curl -sSL https://install.python-poetry.org | python3
26
-
27
- - name: Build wheel
28
- run: poetry build -f wheel
29
30
- name: Extract version
31
id: get_version
32
run: |
@@ -39,6 +32,13 @@ jobs:
39
sed -i "s/COMMIT_HASH = \".*\"/COMMIT_HASH = \"$COMMIT_HASH\"/" src/emd/revision.py
40
33
echo "SHORT_SHA=$COMMIT_HASH" >> $GITHUB_ENV
41
34
35
+ - name: Install Poetry
36
+ run: |
37
+ curl -sSL https://install.python-poetry.org | python3
38
+
+ - name: Build wheel
+ run: poetry build -f wheel
42
- name: Upload wheel artifact
43
uses: actions/upload-artifact@v4
44
0 commit comments