From 0d9bf69b5c2f13a9aee39b967df33615f623c6f7 Mon Sep 17 00:00:00 2001 From: Benjamin Gebauer Date: Wed, 31 May 2023 13:35:45 +0200 Subject: [PATCH] try powershell methods directly without script --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0b0c451..4c98d76 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,11 @@ jobs: id: create shell: pwsh run: | - "$env:GITHUB_WORKSPACE/test1.ps1" + Get-Date + Start-Sleep -Seconds 10 + Get-Date + New-Item -Name test.txt -Value "Hi" + # "$env:GITHUB_WORKSPACE/test1.ps1" - name: Upload artifacts if: steps.create.outcome == 'success' uses: actions/upload-artifact@v3