File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,8 @@ jobs:
137137 - name : compress the binary on non-Windows
138138 if : inputs.runner != 'windows-latest'
139139 run : |
140- tar czf iwasm${{ matrix.suffix }}-${{ inputs.ver_num }}-${{ inputs.runner }}.tar.gz iwasm
140+ # Follow the symlink to the actual binary file
141+ tar --dereference -czf iwasm${{ matrix.suffix }}-${{ inputs.ver_num }}-${{ inputs.runner }}.tar.gz iwasm
141142 zip iwasm${{ matrix.suffix }}-${{ inputs.ver_num }}-${{ inputs.runner }}.zip iwasm
142143 working-directory : ${{ inputs.cwd }}/build
143144
Original file line number Diff line number Diff line change 7373 - name : compress the binary on non-Windows
7474 if : inputs.runner != 'windows-latest' && inputs.release
7575 run : |
76- tar czf wamrc-${{ inputs.ver_num }}-${{ inputs.runner }}.tar.gz wamrc
76+ # Follow the symlink to the actual binary file
77+ tar --dereference -czf wamrc-${{ inputs.ver_num }}-${{ inputs.runner }}.tar.gz wamrc
7778 zip wamrc-${{ inputs.ver_num }}-${{ inputs.runner }}.zip wamrc
7879 working-directory : wamr-compiler/build
7980
You can’t perform that action at this time.
0 commit comments