Skip to content

Commit

Permalink
Install tools manually
Browse files Browse the repository at this point in the history
  • Loading branch information
Leinnan committed Sep 19, 2024
1 parent 64ab38c commit e161f88
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/build_windows_oapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,21 @@ jobs:
# Make sure the .NET's paths are added to the shell's path ENV VAR
- run: Add-Content $env:GITHUB_PATH "C:\Program Files\dotnet"
- run: Add-Content $env:GITHUB_PATH "~\.dotnet\tools"
# Run clean for Unreal
- name: Clean project dir
working-directory: ./unrealProject
shell: bash
run: bash clean_project.sh
# Run Set-Packages for Unreal
- name: Run Set Packages for local build of the CLI
working-directory: ./BeamableProduct
shell: bash
run: bash set-packages.sh "${{ github.workspace }}/unrealProject/" "UNREAL_NugetSource" "" "" "${{ github.workspace }}/unrealProject/Microservices"

- name: Install the Beamable Tools
working-directory: ./unrealProject
run: dotnet tool restore
- name: Remove old AutoGen code
working-directory: unrealProject
working-directory: ./unrealProject
shell: powershell
run: |
Remove-Item -Recurse -Force Plugins/BeamableCore/Source/BeamableCore/Private/AutoGen
Expand All @@ -75,11 +82,6 @@ jobs:
echo "any=true" >> $GITHUB_OUTPUT
echo "Files: ${modified}"
fi
# Run clean project for Unreal
- name: Clean project dir
working-directory: unrealProject
shell: bash
run: bash clean_project.sh
# Run init_repo.sh (needed to setup the project correctly locally)
- name: Prepare Repository for compilation
working-directory: unrealProject
Expand Down

0 comments on commit e161f88

Please sign in to comment.