From de76d31e691dd1bdfc5bc8f3a99aaceed23ec1d9 Mon Sep 17 00:00:00 2001 From: Joseph Flinn Date: Thu, 7 Jan 2021 19:38:49 +0000 Subject: [PATCH] debugging where I am --- .github/workflows/exp.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/exp.yml b/.github/workflows/exp.yml index 00f48eb1788..8a5512be5b7 100644 --- a/.github/workflows/exp.yml +++ b/.github/workflows/exp.yml @@ -7,6 +7,9 @@ jobs: exp: runs-on: windows-latest steps: + - name: Checkout repo + uses: actions/checkout@v2 + - name: Set up Node uses: actions/setup-node@v1 with: @@ -16,16 +19,19 @@ jobs: run: echo "NODE_OPTIONS=--max_old_space_size=4096" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append shell: pwsh + - name: Where am I? + run: dir + - name: Download RH shell: pwsh run: | - Invoke-WebRequest -Uri http://www.angusj.com/resourcehacker/resource_hacker.zip -OutFile "scripts\resource_hacker.zip" - Expand-Archive -Path "scripts\resource_hacker.zip" -DestinationPath scripts\resource_hacker + Invoke-WebRequest -Uri http://www.angusj.com/resourcehacker/resource_hacker.zip -OutFile "resource_hacker.zip" + Expand-Archive -Path resource_hacker.zip -DestinationPath scripts\resource_hacker - name: Debugging Path shell: pwsh run: | - echo "D:\a\cli\cli\scripts\resource_hacker" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + echo "D:\a\cli\cli\resource_hacker" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append echo $env:GITHUB_PATH - name: ResourceHacker Test