We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a108c5 commit c41891bCopy full SHA for c41891b
.github/workflows/make_binaries.yml
@@ -59,13 +59,12 @@ jobs:
59
run: |
60
chmod u+x build/dcm2bids{_helper,_scaffold}
61
tar -czvf dcm2bids_${{ runner.os }}_${{ github.event.release.tag_name }}.tar.gz \
62
- build/dcm2bids \
63
- build/dcm2bids_helper \
64
- build/dcm2bids_scaffold
+ -C build dcm2bids dcm2bids_helper dcm2bids_scaffold
65
66
- name: Create archive for Windows
67
if: startsWith(matrix.os, 'windows')
68
- run: tar.exe acvf dcm2bids_${{ runner.os }}_${{ github.event.release.tag_name }}.zip build/*.exe
+ run: tar.exe acvf dcm2bids_${{ runner.os }}_${{ github.event.release.tag_name }}.zip \
+ -C build *.exe
69
70
- name: Upload binaries
71
uses: actions/upload-artifact@v3
0 commit comments