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",