From 004d2ececd084c3698e65f55160d670afd22b3fd Mon Sep 17 00:00:00 2001 From: Tingluo Huang Date: Mon, 27 Jan 2020 22:38:49 -0500 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 726e4487f..69d3a826b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -70,7 +70,15 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 + + # Set Path workaround for https://github.com/actions/virtual-environments/issues/263 + - run: | + echo "::add-path::C:\Program Files\Git\mingw64\bin" + echo "::add-path::C:\Program Files\Git\usr\bin" + echo "::add-path::C:\Program Files\Git\bin" + if: matrix.os == 'windows-latest' + name: "Temp step to Set Path for Windows" # Build runner layout - name: Build & Layout Release @@ -192,4 +200,4 @@ jobs: upload_url: ${{ steps.createRelease.outputs.upload_url }} asset_path: ${{ github.workspace }}/actions-runner-linux-arm64-${{ steps.releaseNote.outputs.version }}.tar.gz asset_name: actions-runner-linux-arm64-${{ steps.releaseNote.outputs.version }}.tar.gz - asset_content_type: application/octet-stream \ No newline at end of file + asset_content_type: application/octet-stream