We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f3e3aa commit 2a7b32aCopy full SHA for 2a7b32a
1 file changed
.github/workflows/on-release.yaml
@@ -47,14 +47,14 @@ jobs:
47
- name: Build archive
48
shell: bash
49
run: |
50
- # Replace with the name of your binary
51
binary_name="rcon"
52
53
dirname="$binary_name-${{ env.VERSION }}-${{ matrix.target }}"
54
mkdir "$dirname"
55
if [ "${{ matrix.os }}" = "windows-latest" ]; then
56
mv "target/${{ matrix.target }}/release/$binary_name.exe" "$dirname"
57
else
+ ls -alh "target/${{ matrix.target }}/release/"
58
mv "target/${{ matrix.target }}/release/$binary_name" "$dirname"
59
fi
60
@@ -69,4 +69,4 @@ jobs:
69
- name: Upload Release Asset
70
env:
71
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
72
- run: gh release upload ${{ env.VERSION }} ${{env.ASSET}}.zip
+ run: gh release upload ${{ env.VERSION }} ${{env.ASSET}}
0 commit comments