Package MS compiler from https://download.visualstudio.microsoft.com/download/pr/165d4174-7d65-4baa-83d5-4652a3e56211/a49591fd4681fe829011c6d55c189fdefae51a7e1a86be1ac11f43a1a52d9ad7/vs_BuildTools.exe #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Package MS compiler | |
run-name: Package MS compiler from ${{ inputs.url }} | |
on: | |
workflow_dispatch: | |
inputs: | |
url: | |
description: The Microsoft installer URL (e.g. https://aka.ms/vs/17/pre/vs_BuildTools.exe) | |
required: true | |
jobs: | |
package-ms-compiler: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- shell: pwsh | |
run: .\msvc-install\gh-msvc-install.ps1 -url ${{ github.event.inputs.url }} | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} |