Skip to content

Commit 8555a73

Browse files
fix: workflow fix for platforms
1 parent b985f98 commit 8555a73

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs: # credits for workflow from https://github.com/messense/crfs-rs/blob/main/
5858
- name: Install built wheel
5959
run: |
6060
pip install ./dist/pydracula-*.whl --force-reinstall
61-
rm -rf dist
61+
rm -Force dist
6262
python -c "import pydracula; pydracula.Lang"
6363
- name: Upload wheels
6464
uses: actions/upload-artifact@v3
@@ -123,9 +123,9 @@ jobs: # credits for workflow from https://github.com/messense/crfs-rs/blob/main/
123123
apt-get install -y --no-install-recommends python3 python3-pip
124124
pip3 install -U pip
125125
run: |
126-
pip install ./dist/pydracula-*.whl --force-reinstall
126+
pip3 install ./dist/pydracula-*.whl --force-reinstall
127127
rm -rf dist
128-
python -c "import pydracula; pydracula.Lang"
128+
python3 -c "import pydracula; pydracula.Lang"
129129
- name: Upload wheels
130130
uses: actions/upload-artifact@v3
131131
with:

0 commit comments

Comments
 (0)