adds step to copy files to root

This commit is contained in:
Andrew Welker
2020-03-25 15:46:09 -06:00
parent 475be152a7
commit bcfd90204b

View File

@@ -144,6 +144,12 @@ jobs:
Remove-Item -Path .\*.zip
- name: Check directory again
run: Get-ChildItem ./
# Copy Contents of output folder to root directory
- name: Copy Files to root & delete output directory
run: |
Remove-Item -Path .\*.*
Get-ChildItem -Path .\output\*.* | Copy-Item -DestinationPath .\
Remove-Item -Path .\output -Recurse
# Commits the build output to the branch and tags it with the version
- name: Commit build output and tag the commit
shell: powershell