fix: typo

This commit is contained in:
Aram 🍐 2024-12-01 16:03:32 -05:00
parent c6544cfe05
commit 89c3b59610

View file

@ -148,10 +148,10 @@ jobs:
run: |
mkdir -p ci/assets
if [ "${{ matrix.build }}" = "windows" ]; then
cp "target/${{ matrix.output }}/release/onetun.exe" "ci/assets/onetun.exe"
cp "target/${{ matrix.target }}/release/onetun.exe" "ci/assets/onetun.exe"
echo "ASSET=onetun.exe" >> $GITHUB_ENV
else
cp "target/${{ matrix.output }}/release/onetun" "ci/assets/onetun-${{ matrix.build }}"
cp "target/${{ matrix.target }}/release/onetun" "ci/assets/onetun-${{ matrix.build }}"
echo "ASSET=onetun-${{ matrix.build }}" >> $GITHUB_ENV
fi