Skip to content

Commit

Permalink
Release 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 26, 2023
1 parent b505cd8 commit 3cc4909
Show file tree
Hide file tree
Showing 29 changed files with 495 additions and 462 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
with:
Expand All @@ -20,15 +20,15 @@ jobs:
echo RELEASE_VERSION=$VERSION >> $GITHUB_ENV
echo "RELEASE_VERSION_MAJOR=v${VERSION%%.*}" >> $GITHUB_ENV
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ env.RELEASE_VERSION_MAJOR }}
path: 'release'
id: checkoutrelease
continue-on-error: true

- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: steps.checkoutrelease.outcome != 'success'
with:
path: 'release'
Expand Down
40 changes: 20 additions & 20 deletions .pnp.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .pnp.loader.mjs

Some generated files are not rendered by default. Learn more about how customized 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.
Binary file not shown.
402 changes: 201 additions & 201 deletions .yarn/releases/yarn-3.6.1.cjs → .yarn/releases/yarn-3.6.3.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ enableTelemetry: false

nodeLinker: pnp

yarnPath: .yarn/releases/yarn-3.6.1.cjs
yarnPath: .yarn/releases/yarn-3.6.3.cjs
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# setup-msvc-dev

[![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)
[![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)

A [GitHub Action](https://github.com/features/actions) to set up a Developer
Command Prompt for Microsoft Visual C++.
Expand Down
8 changes: 8 additions & 0 deletions dist/constants.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export declare const INPUT_ARCHITECTURE = "arch";
export declare const INPUT_VS_PATH = "vs-path";
export declare const INPUT_SDK = "sdk";
export declare const INPUT_SPECTRE = "spectre";
export declare const INPUT_TOOLSET = "toolset";
export declare const INPUT_UWP = "uwp";
export declare const INPUT_EXPORT_VCVARSALL = "export-path-to-vcvarsall";
export declare const INPUT_EXPORT_VS = "export-path-to-vs";
Loading

0 comments on commit 3cc4909

Please sign in to comment.