Skip to content

Commit 0ebdbbe

Browse files
committed
fix workflow for 64 bit build
1 parent c6c5700 commit 0ebdbbe

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

.github/workflows/automaticRelease.yaml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
filename: '../Rules.zip'
5454
directory: 'Example'
5555
path: 'Rules'
56-
- name: create zip file for pyd file -- this allows the name to indicate arch, python version etc but unzipped it is correctly named
56+
- name: create zip file for pyd file -- this allows the name to indicate arch, python version, etc., but unzipped it is correctly named
5757
uses: thedoctor0/zip-release@0.7.5
5858
with:
5959
type: 'zip'
@@ -135,19 +135,13 @@ jobs:
135135
run: |
136136
cd Example
137137
python test.py
138-
- name: create zip file for pyd file -- this allows the name to indicate arch, python version etc but unzipped it is correctly named
138+
- name: create zip file for pyd file -- this allows the name to indicate arch, python version, etc., but unzipped it is correctly named
139139
uses: thedoctor0/zip-release@0.7.5
140140
with:
141141
type: 'zip'
142142
filename: '../libmathcat_py-64-3.11-linux.zip'
143143
directory: 'Example'
144-
path: 'liblibmathcat_py.so'
145-
# build the test after zipping up "Rules" because the test will unzip the files needed for the test
146-
#
147-
# - name: test build
148-
# run: |
149-
# cd Example
150-
# python test.py
144+
path: 'libmathcat_py.so'
151145
- name: Upload 64 bit pyd file
152146
uses: actions/upload-artifact@v4
153147
with:
@@ -160,7 +154,7 @@ jobs:
160154
pre-release:
161155
name: Pre Release
162156
continue-on-error: false
163-
needs: [l10n, rust-64, rust-32]
157+
needs: [l10n, rust-64, rust-32, linux-64]
164158
runs-on: ubuntu-latest
165159
steps:
166160
- name: Checkout code
@@ -194,7 +188,7 @@ jobs:
194188
name: MathCAT_addons
195189
- shell: bash
196190
run: cp -r MathCAT addon/globalPlugins
197-
- name: create zip file for standalone pyd file -- this allows the name to indicate arch, python version etc but unzipped it is correctly named
191+
- name: create zip file for standalone pyd file -- this allows the name to indicate arch, python version, etc., but unzipped it is correctly named
198192
uses: thedoctor0/zip-release@0.7.5
199193
with:
200194
type: 'zip'
@@ -214,4 +208,5 @@ jobs:
214208
*.nvda-addon
215209
libmathcat_py-32-3.11-win.zip
216210
libmathcat_py-64-3.11-win.zip
211+
libmathcat_py-64-3.11-linux.zip
217212
Rules.zip

0 commit comments

Comments
 (0)