Skip to content

Commit 3cc4909

Browse files
Release 2.0.2
1 parent b505cd8 commit 3cc4909

29 files changed

+495
-462
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
build:
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525

2626
- uses: actions/setup-node@v3
2727
with:

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
release:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v3
8+
- uses: actions/checkout@v4
99

1010
- uses: actions/setup-node@v3
1111
with:
@@ -20,15 +20,15 @@ jobs:
2020
echo RELEASE_VERSION=$VERSION >> $GITHUB_ENV
2121
echo "RELEASE_VERSION_MAJOR=v${VERSION%%.*}" >> $GITHUB_ENV
2222
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
with:
2525
fetch-depth: 0
2626
ref: ${{ env.RELEASE_VERSION_MAJOR }}
2727
path: 'release'
2828
id: checkoutrelease
2929
continue-on-error: true
3030

31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
if: steps.checkoutrelease.outcome != 'success'
3333
with:
3434
path: 'release'

.pnp.cjs

+20-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.pnp.loader.mjs

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

.yarn/releases/yarn-3.6.1.cjs .yarn/releases/yarn-3.6.3.cjs

+201-201
Large diffs are not rendered by default.

.yarnrc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ enableTelemetry: false
22

33
nodeLinker: pnp
44

5-
yarnPath: .yarn/releases/yarn-3.6.1.cjs
5+
yarnPath: .yarn/releases/yarn-3.6.3.cjs

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# setup-msvc-dev
22

3-
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat-square&label=License)](https://github.com/TheMrMilchmann/setup-msvc-dev/blob/master/LICENSE)
3+
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=for-the-badge&label=License)](https://github.com/TheMrMilchmann/setup-msvc-dev/blob/master/LICENSE)
44

55
A [GitHub Action](https://github.com/features/actions) to set up a Developer
66
Command Prompt for Microsoft Visual C++.

dist/constants.d.ts

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
export declare const INPUT_ARCHITECTURE = "arch";
2+
export declare const INPUT_VS_PATH = "vs-path";
3+
export declare const INPUT_SDK = "sdk";
4+
export declare const INPUT_SPECTRE = "spectre";
5+
export declare const INPUT_TOOLSET = "toolset";
6+
export declare const INPUT_UWP = "uwp";
7+
export declare const INPUT_EXPORT_VCVARSALL = "export-path-to-vcvarsall";
8+
export declare const INPUT_EXPORT_VS = "export-path-to-vs";

0 commit comments

Comments
 (0)