Skip to content

Commit

Permalink
Fix path to result binary in Windows action (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-fedin authored Aug 16, 2021
1 parent 92dcf3c commit 47133f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -491,12 +491,12 @@ jobs:
- name: Move artifact.
if: env.UPLOAD_ARTIFACT == 'true'
run: |
cd %REPO_NAME%\build\bin
cd %REPO_NAME%\build
mkdir artifact
move Kotatogram.exe artifact/
- uses: actions/upload-artifact@master
name: Upload artifact.
if: env.UPLOAD_ARTIFACT == 'true'
with:
name: ${{ env.ARTIFACT_NAME }}
path: ${{ env.REPO_NAME }}\build\bin\artifact\
path: ${{ env.REPO_NAME }}\build\artifact\

0 comments on commit 47133f6

Please sign in to comment.