From 1368813fb4a84bcc04620d91aef525a8a4e54291 Mon Sep 17 00:00:00 2001 From: alemuntoni Date: Tue, 1 Dec 2020 11:59:49 +0100 Subject: [PATCH] fix deprecated add-path on github actions windows workflow --- .github/workflows/BuildSamplesWindows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/BuildSamplesWindows.yml b/.github/workflows/BuildSamplesWindows.yml index 999008ea..0b4ca556 100644 --- a/.github/workflows/BuildSamplesWindows.yml +++ b/.github/workflows/BuildSamplesWindows.yml @@ -9,12 +9,12 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Downlaod Jom + - name: Download Jom run: | Invoke-WebRequest -Uri "http://download.qt.io/official_releases/jom/jom_1_1_3.zip" -OutFile "jom_1_1_3.zip" New-Item -Name "jom" -ItemType "directory" Expand-Archive -Path jom_1_1_3.zip -DestinationPath .\jom - echo "::add-path::$(Get-Location)\jom" + echo "$(Get-Location)\jom" >> GITHUB_PATH - name: Setup env variables id: envs run: |