Skip to content

Commit 80b2dcf

Browse files
committed
[build] try signing again
1 parent 2c1a6c4 commit 80b2dcf

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/bins.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,17 +288,25 @@ jobs:
288288
ldd $PREFIX/bin/lnav.exe | grep /usr | cut -d' ' -f3 | xargs -I {} cp {} $PREFIX/bin/
289289
cp ../lnav/README ../lnav/NEWS.md .
290290
zip -r ../lnav/${{ env.LNAV_ZIPNAME }} ${{ env.LNAV_BASENAME }}
291+
mkdir bin
292+
cp $PREFIX/bin/* bin/
291293
- name: "💉 Basic test"
292294
run: |
293295
set -x
294296
cd ../lnav-build
295297
export PREFIX=$PWD/${{ env.LNAV_BASENAME }}
296298
$PREFIX/bin/lnav.exe -n ../lnav/test/logfile_multiline.0
297299
- name: upload-unsigned-artifact
300+
id: upload-unsigned-artifact
298301
uses: actions/upload-artifact@v4
299302
with:
300303
name: lnav-windows-${{ matrix.arch }}.zip
301-
path: ${{ env.LNAV_ZIPNAME }}
304+
# path: ${{ env.LNAV_ZIPNAME }}
305+
path: |
306+
bin/lnav.exe
307+
bin/msys-2.0.dll
308+
README
309+
NEWS.md
302310
if-no-files-found: error
303311
- name: sign
304312
uses: signpath/github-action-submit-signing-request@v1.1

0 commit comments

Comments
 (0)