Skip to content

Commit

Permalink
Merge pull request #39 from XanatosX/bugfix/fix-live-build
Browse files Browse the repository at this point in the history
Add step to move nupkg files to publish folder
  • Loading branch information
XanatosX authored Feb 21, 2023
2 parents 6631a9b + 5d72a09 commit 0d281dd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/create-live-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,11 @@ jobs:
echo "BUILD_VERSION=${{ GITHUB.REF_NAME }}" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
}
- name: Pack application
run: dotnet pack -p:PackageOutputPath=${{ env.APPLICATION_PUBLISH_FOLDER }} -p:Version=${{ env.BUILD_VERSION }}
run: dotnet pack -p:PackageOutputPath=publish -p:Version=${{ env.BUILD_VERSION }}
- name: Move nuget to output
run: |
mv .\src\IL2CareerToolset\publish/*.nupkg
mv .\src\IL2CareerModel\publish/*.nupkg
- name: Show content for debug
if: ${{ env.DEBUG == 'true' }}
run: ls
Expand Down

0 comments on commit 0d281dd

Please sign in to comment.