From 645e3f7313ddfc30999dda2bfce4e98697c233c1 Mon Sep 17 00:00:00 2001 From: Tim Heuer Date: Sun, 13 Nov 2022 08:01:59 -0700 Subject: [PATCH] Modifying version and readme notes [skip ci] --- .github/workflows/test.yml | 2 ++ README.md | 2 +- package.json | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 37dcf86..d4987a3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -42,6 +42,7 @@ jobs: PATH: '' - name: Setup MSBuild (x64) + if: always() id: setup_msbuild_path_x64 uses: ./ with: @@ -49,6 +50,7 @@ jobs: msbuild-architecture: 'x64' - name: Setup MSBuild (arm64) + if: always() id: setup_msbuild_path_arm uses: ./ with: diff --git a/README.md b/README.md index 4d04e32..ccf3bb4 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ If you need your Actions runner to target a pre-release version of Visual Studio ``` ### Specifying MSBuild architecture (optional) -By default the action will use the x86 architecture for MSBuild, but it is possible to target the x64 versions instead. Simply add the `msbuild-architecture` input. Valid input values are `x86` (default) and `x64`. +By default the action will use the x86 architecture for MSBuild, but it is possible to target the x64 versions instead. Simply add the `msbuild-architecture` input. Valid input values are `x86` (default), `x64`, and `arm64`. Note that the success of these will rely on the runner OS. ```yml - name: Add msbuild to PATH diff --git a/package.json b/package.json index 662bc32..cb76856 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "setup-msbuild", - "version": "1.1.3", + "version": "1.2.0", "private": true, "description": "Helps set up specific MSBuild tool into PATH for later usage.", "main": "lib/main.js",