Skip to content

Commit

Permalink
Merge pull request #44 from XanatosX/bugfix/fix-live-build
Browse files Browse the repository at this point in the history
Add missing folder before moving
  • Loading branch information
XanatosX authored Feb 21, 2023
2 parents 677ac2c + d33b8b9 commit 7e0ba10
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/create-live-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,9 @@ jobs:
run: dotnet pack -p:PackageOutputPath=publish -p:Version=${{ env.BUILD_VERSION }}
- name: Move nuget to output
run: |
mv .\src\IL2CareerToolset\publish/*.nupkg ${{ env.APPLICATION_PUBLISH_FOLDER }}
mv .\src\IL2CareerModel\publish/*.nupkg ${{ env.APPLICATION_PUBLISH_FOLDER }}
mkdir ${{ env.APPLICATION_PUBLISH_FOLDER }}
mv .\src\IL2CareerToolset\publish\*.nupkg ${{ env.APPLICATION_PUBLISH_FOLDER }}
mv .\src\IL2CareerModel\publish\*.nupkg ${{ env.APPLICATION_PUBLISH_FOLDER }}
- name: Show content for debug
if: ${{ env.DEBUG == 'true' }}
run: ls
Expand Down

0 comments on commit 7e0ba10

Please sign in to comment.