From e0d1b791a05e2d6771f45ad67111e7bb57a51856 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Wed, 18 Mar 2020 15:19:35 -0600 Subject: [PATCH] added a couple of check steps and the push back in --- .github/workflows/docker.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index a8074a1..9fd18e2 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -119,12 +119,14 @@ jobs: with: name: Build path: ./ + - name: Check directory + run: Get-ChildItem ./ - name: Unzip Build file run: | - Get-ChildItem ./ Get-ChildItem -Path ./ -include @("*.zip") | Expand-Archive -DestinationPath ./ Remove-Item -Path ./ -include @("*.zip") - Get-ChildItem ./ + - name: Check directory again + run: Get-ChildItem ./ - name: Copy build output and push shell: powershell run: | @@ -137,8 +139,8 @@ jobs: git tag $($Env:VERSION) $branch = $($Env:GITHUB_REF) -Replace "refs/heads/" Write-Output $branch - # git push --set-upstream origin $($branch) --force - # git push --tags origin + git push --set-upstream origin $branch --force + git push --tags origin - name: Check Directory run: | Get-ChildItem "./"