Skip to content

Commit 39420bd

Browse files
committed
fix workflow for 64 bit build
1 parent 3d737d5 commit 39420bd

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/automaticRelease.yaml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ jobs:
5151
run: |
5252
cp target/x86_64-pc-windows-msvc/release/libmathcat_py.dll Example/libmathcat_py.pyd
5353
cd Example
54-
python test
54+
python test.py
5555
- name: Upload addons dir
5656
uses: actions/upload-artifact@v4
5757
with:
58-
name: upload 64 bit pyd
58+
name: pyd_64
5959
path: Example
6060
retention-days: 1
6161

@@ -114,6 +114,13 @@ jobs:
114114
- name: copy standalone library so it has a meaningful name
115115
run: |
116116
cp addon/globalPlugins/MathCAT/libmathcat_py.pyd libmathcat_py-32-3.11.pyd
117+
- name: Download 64 bit build
118+
uses: actions/download-artifact@v4
119+
with:
120+
name: pyd_64
121+
- shell: bash
122+
run: |
123+
ls
117124
cp Example/libmathcat_py.pyd libmathcat_py-64-3.11.pyd
118125
- name: Automatic release
119126
uses: marvinpinto/action-automatic-releases@latest

0 commit comments

Comments
 (0)