Fix uploading artifact on Linux

This commit is contained in:
Ilya Fedin 2024-04-03 22:04:18 +04:00 committed by John Preston
parent e2a0483b9f
commit b09cede008

View file

@ -115,8 +115,8 @@ jobs:
if: env.UPLOAD_ARTIFACT == 'true' if: env.UPLOAD_ARTIFACT == 'true'
run: | run: |
cd $REPO_NAME/out/Debug cd $REPO_NAME/out/Debug
mkdir artifact sudo mkdir artifact
mv {Telegram,Updater} artifact/ sudo mv {Telegram,Updater} artifact/
- uses: actions/upload-artifact@master - uses: actions/upload-artifact@master
if: env.UPLOAD_ARTIFACT == 'true' if: env.UPLOAD_ARTIFACT == 'true'
name: Upload artifact. name: Upload artifact.