fix actions 3

This commit is contained in:
mmvanheusden
2022-06-27 15:32:33 +02:00
parent 7ed72f79ac
commit ca066bcb3c
2 changed files with 6 additions and 6 deletions

View File

@@ -27,19 +27,19 @@ jobs:
run: ls -Al && pwd
- name: Move x64 exe
run: mv ./dist/SteamDepotDownloaderGUI*.exe ./SteamDepotDownloaderGUI-${{ github.run_number }}.exe
run: cp ./dist/SteamDepotDownloaderGUI*.exe ./SteamDepotDownloaderGUI-${{ github.run_number }}.exe
- name: Move x64 AppImage
run: mv ./dist/SteamDepotDownloaderGUI-*.AppImage ./SteamDepotDownloaderGUI-${{ github.run_number }}.AppImage
run: cp ./dist/SteamDepotDownloaderGUI-*.*.*.AppImage ./SteamDepotDownloaderGUI-${{ github.run_number }}.AppImage
- name: Move x64 zip
run: mv ./dist/SteamDepotDownloaderGUI-*.zip ./SteamDepotDownloaderGUI-${{ github.run_number }}.zip
run: cp ./dist/steamdepotdownloadergui-*.zip ./SteamDepotDownloaderGUI-${{ github.run_number }}.zip
- name: Move arm64 AppImage
run: mv ./dist/*-arm64.AppImage ./SteamDepotDownloaderGUI-${{ github.run_number }}-arm64.AppImage
run: cp ./dist/*-arm64.AppImage ./SteamDepotDownloaderGUI-${{ github.run_number }}-arm64.AppImage
- name: Move arm64 zip
run: mv ./dist/*-arm64.zip ./SteamDepotDownloaderGUI-${{ github.run_number }}-arm64.zip
run: cp ./dist/steamdepotdownloadergui-*.*.*-arm64.zip ./SteamDepotDownloaderGUI-${{ github.run_number }}-arm64.zip
- name: Upload artifacts
uses: actions/upload-artifact@v3