Skip to content

Commit 2a7b32a

Browse files
committed
fix additional filending on compressed artifacts
1 parent 7f3e3aa commit 2a7b32a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/on-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ jobs:
4747
- name: Build archive
4848
shell: bash
4949
run: |
50-
# Replace with the name of your binary
5150
binary_name="rcon"
5251
5352
dirname="$binary_name-${{ env.VERSION }}-${{ matrix.target }}"
5453
mkdir "$dirname"
5554
if [ "${{ matrix.os }}" = "windows-latest" ]; then
5655
mv "target/${{ matrix.target }}/release/$binary_name.exe" "$dirname"
5756
else
57+
ls -alh "target/${{ matrix.target }}/release/"
5858
mv "target/${{ matrix.target }}/release/$binary_name" "$dirname"
5959
fi
6060
@@ -69,4 +69,4 @@ jobs:
6969
- name: Upload Release Asset
7070
env:
7171
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
72-
run: gh release upload ${{ env.VERSION }} ${{env.ASSET}}.zip
72+
run: gh release upload ${{ env.VERSION }} ${{env.ASSET}}

0 commit comments

Comments
 (0)