mirror of
https://github.com/ilammy/msvc-dev-cmd.git
synced 2026-09-06 21:57:19 +08:00
4734b1a57b
Node 12 is deprecated and gives off a warning: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/
23 lines
619 B
YAML
23 lines
619 B
YAML
name: Enable Developer Command Prompt
|
|
description: Configure Microsoft Visual C++ command line
|
|
inputs:
|
|
arch:
|
|
description: Target architecture
|
|
default: x64
|
|
sdk:
|
|
description: Windows SDK number to build for
|
|
spectre:
|
|
description: Enable Specre mitigations
|
|
toolset:
|
|
description: VC++ compiler toolset version
|
|
uwp:
|
|
description: Build for Universal Windows Platform
|
|
vsversion:
|
|
description: The Visual Studio version to use. This can be the version number (e.g. 16.0 for 2019) or the year (e.g. "2019").
|
|
runs:
|
|
using: node16
|
|
main: index.js
|
|
branding:
|
|
icon: terminal
|
|
color: purple
|