Skip to content

Commit c41891b

Browse files
committed
remove build dir from archive
1 parent 7a108c5 commit c41891b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/make_binaries.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,12 @@ jobs:
5959
run: |
6060
chmod u+x build/dcm2bids{_helper,_scaffold}
6161
tar -czvf dcm2bids_${{ runner.os }}_${{ github.event.release.tag_name }}.tar.gz \
62-
build/dcm2bids \
63-
build/dcm2bids_helper \
64-
build/dcm2bids_scaffold
62+
-C build dcm2bids dcm2bids_helper dcm2bids_scaffold
6563
6664
- name: Create archive for Windows
6765
if: startsWith(matrix.os, 'windows')
68-
run: tar.exe acvf dcm2bids_${{ runner.os }}_${{ github.event.release.tag_name }}.zip build/*.exe
66+
run: tar.exe acvf dcm2bids_${{ runner.os }}_${{ github.event.release.tag_name }}.zip \
67+
-C build *.exe
6968

7069
- name: Upload binaries
7170
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)