Skip to content

Commit

Permalink
fix: fix build archive and release name
Browse files Browse the repository at this point in the history
  • Loading branch information
replydev committed Feb 15, 2024
1 parent cab13f7 commit 0798f1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,15 @@ jobs:
shell: bash
run: |
mkdir dist
if [ "${{ matrix.os }}" = "windows-2019" ]; then
if [ "${{ matrix.os }}" == *"windows"* ]; then
cp "target/${{ matrix.target }}/release/$BIN_NAME.exe" "dist/"
else
cp "target/${{ matrix.target }}/release/$BIN_NAME" "dist/"
fi
- uses: actions/upload-artifact@v4.3.1
with:
name: cotp-${{ matrix.build }}-${{ inputs.tag }}
name: cotp-${{ matrix.build }}
path: dist

publish:
Expand Down

0 comments on commit 0798f1e

Please sign in to comment.