Skip to content

Commit c3e8bbf

Browse files
committed
fix workflow for 64 bit build
1 parent dff4a3e commit c3e8bbf

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/automaticRelease.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,13 @@ jobs:
6060
# run: |
6161
# cd Example
6262
# python test.py
63+
- name rename pyd file
64+
run: mv Example/libmathcat_py.pyd Example/libmathcat_py-64-3.11.pyd
6365
- name: Upload 64 bit pyd file
6466
uses: actions/upload-artifact@v4
6567
with:
6668
name: libmathcat_py-64-3.11.pyd
67-
path: Example/libmathcat_py.pyd
69+
path: Example/libmathcat_py-64-3.11.pyd
6870
compression-level: 0
6971
retention-days: 1
7072
- name: Upload Rules.zip
@@ -115,7 +117,7 @@ jobs:
115117
- name: Download MathCAT addons dir
116118
uses: actions/download-artifact@v4
117119
with:
118-
name: MathCAT_addons
120+
name: libmathcat_py-64-3.11.pyd
119121
- shell: bash
120122
run: |
121123
cp -r MathCAT addon/globalPlugins
@@ -132,8 +134,9 @@ jobs:
132134
cp addon/globalPlugins/MathCAT/libmathcat_py.pyd libmathcat_py-32-3.11.pyd
133135
- name: Download 64 bit build
134136
uses: actions/download-artifact@v4
135-
# using the defaults (all artfacts are download) is the desired behavior
136-
- name: Automatic release
137+
with:
138+
name: MathCAT_addons
139+
- name: Automatic release
137140
uses: marvinpinto/action-automatic-releases@latest
138141
with:
139142
repo_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)