Skip to content

Commit

Permalink
Move clean step
Browse files Browse the repository at this point in the history
  • Loading branch information
Leinnan committed Sep 19, 2024
1 parent bc71c9a commit 64ab38c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build_windows_oapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,18 +47,13 @@ jobs:
- run: Add-Content $env:GITHUB_PATH "C:\Program Files\dotnet"
- run: Add-Content $env:GITHUB_PATH "~\.dotnet\tools"
# Run Set-Packages 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: 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 @@ -80,6 +75,11 @@ 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 64ab38c

Please sign in to comment.