From 63feaac9bdaa6c73c2a3737dea19d86c307e7a58 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Wed, 25 Mar 2020 16:49:37 -0600 Subject: [PATCH] fixes workflow remove step --- .github/workflows/docker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 79e56348..59441739 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -147,8 +147,8 @@ jobs: # Copy Contents of output folder to root directory - name: Copy Files to root & delete output directory run: | - Remove-Item -Path .\ -Include @("*.cpz", "*.dll", "*.cplz", "*.clz", "*.xml", "*.md") - Get-ChildItem -Path .\output\*.* | Copy-Item -DestinationPath .\ + Remove-Item -Path .\* -Include @("*.cpz","*.md","*.cplz","*.json","*.dll","*.clz") + 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