Skip to content

Commit 50d529c

Browse files
committed
add some debugging output
1 parent dc6724e commit 50d529c

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/automaticRelease.yaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -199,19 +199,15 @@ jobs:
199199
pip install scons markdown
200200
sudo apt update
201201
sudo apt install gettext
202-
- name: Update NVDA Version Constraints
203-
run: |
204-
# Adjust the version numbers for the old 32 bit NVDA version
205-
sed -i 's/"addon_minimumNVDAVersion": "[^"]*"/"addon_minimumNVDAVersion": "2025.1"/' buildVars.py
206-
sed -i 's/"addon_lastTestedNVDAVersion": "[^"]*"/"addon_lastTestedNVDAVersion": "2025.4"/' buildVars.py
207202
- name: Run scons to build .addon file
208203
run: |
209204
scons
210205
- name: Rename addon for 64-bit
211206
run: |
212207
for f in *.nvda-addon; do
213208
mv "$f" "${f%.nvda-addon}-64.nvda-addon"
214-
done
209+
done
210+
ls -l *.nvda-addon
215211
- name: Upload the addon
216212
uses: actions/upload-artifact@v4
217213
with:
@@ -257,6 +253,11 @@ jobs:
257253
pip install scons markdown
258254
sudo apt update
259255
sudo apt install gettext
256+
- name: Update NVDA Version Constraints
257+
run: |
258+
# Adjust the version numbers for the old 32 bit NVDA version
259+
sed -i 's/"addon_minimumNVDAVersion": "[^"]*"/"addon_minimumNVDAVersion": "2025.1"/' buildVars.py
260+
sed -i 's/"addon_lastTestedNVDAVersion": "[^"]*"/"addon_lastTestedNVDAVersion": "2025.4"/' buildVars.py
260261
- name: Run scons to build .addon file
261262
run: |
262263
scons
@@ -265,6 +266,7 @@ jobs:
265266
for f in *.nvda-addon; do
266267
mv "$f" "${f%.nvda-addon}-32.nvda-addon"
267268
done
269+
ls -l *.nvda-addon
268270
- name: Upload the addon
269271
uses: actions/upload-artifact@v4
270272
with:

0 commit comments

Comments
 (0)