mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-14 04:57:15 +00:00
adds step to copy files to root
This commit is contained in:
parent
475be152a7
commit
bcfd90204b
1 changed files with 6 additions and 0 deletions
6
.github/workflows/docker.yml
vendored
6
.github/workflows/docker.yml
vendored
|
|
@ -144,6 +144,12 @@ jobs:
|
||||||
Remove-Item -Path .\*.zip
|
Remove-Item -Path .\*.zip
|
||||||
- name: Check directory again
|
- name: Check directory again
|
||||||
run: Get-ChildItem ./
|
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
|
# Commits the build output to the branch and tags it with the version
|
||||||
- name: Commit build output and tag the commit
|
- name: Commit build output and tag the commit
|
||||||
shell: powershell
|
shell: powershell
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue