Skip to content

Commit

Permalink
fix actions 3
Browse files Browse the repository at this point in the history
  • Loading branch information
mmvanheusden committed Jun 26, 2022
1 parent 99c97db commit 7ed72f7
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,23 @@ jobs:
- name: build project
run: npm run buildall

- name: debug
run: ls -Al && pwd

- name: Move x64 exe
run: mv dist/SteamDepotDownloaderGUI*.exe SteamDepotDownloaderGUI-${{ github.run_number }}.exe
run: mv ./dist/SteamDepotDownloaderGUI*.exe ./SteamDepotDownloaderGUI-${{ github.run_number }}.exe

- name: Move x64 AppImage
run: mv dist/SteamDepotDownloaderGUI-*.AppImage SteamDepotDownloaderGUI-${{ github.run_number }}.AppImage
run: mv ./dist/SteamDepotDownloaderGUI-*.AppImage ./SteamDepotDownloaderGUI-${{ github.run_number }}.AppImage

- name: Move x64 zip
run: mv dist/SteamDepotDownloaderGUI-*.zip SteamDepotDownloaderGUI-${{ github.run_number }}.zip
run: mv ./dist/SteamDepotDownloaderGUI-*.zip ./SteamDepotDownloaderGUI-${{ github.run_number }}.zip

- name: Move arm64 AppImage
run: mv dist/*-arm64.AppImage SteamDepotDownloaderGUI-${{ github.run_number }}-arm64.AppImage
run: mv ./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: mv ./dist/*-arm64.zip ./SteamDepotDownloaderGUI-${{ github.run_number }}-arm64.zip

- name: Upload artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 7ed72f7

Please sign in to comment.