build: change main script path

This commit is contained in:
Nogic 2023-04-26 23:44:51 +00:00
parent 2683943ee5
commit 3fcae62228
3 changed files with 2412 additions and 2412 deletions

View File

@ -18,9 +18,9 @@ inputs:
config-file:
description: 'Optional NuGet.config location, if your NuGet.config isn''t located in the root of the repo.'
cache:
description: 'Cache NuGet global packages folder or not.'
description: 'Optional input to enable caching of the NuGet global-packages folder'
required: false
default: 'false'
default: false
outputs:
cache-hit:
description: 'A boolean value to indicate if a cache was hit.'
@ -28,6 +28,6 @@ outputs:
description: 'Contains the installed by action .NET SDK version for reuse.'
runs:
using: 'node16'
main: 'dist/index.js'
main: 'dist/setup/index.js'
post: 'dist/cache-save/index.js'
post-if: success()

File diff suppressed because it is too large Load Diff

View File

@ -3,9 +3,9 @@
"version": "3.0.2",
"private": true,
"description": "setup dotnet action",
"main": "dist/index.js",
"main": "dist/setup/index.js",
"scripts": {
"build": "ncc build src/setup-dotnet.ts && ncc build -o dist/cache-save src/cache-save.ts",
"build": "ncc build -o dist/setup src/setup-dotnet.ts && ncc build -o dist/cache-save src/cache-save.ts",
"format": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --write \"**/*.{ts,yml,yaml}\"",
"format-check": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --check \"**/*.{ts,yml,yaml}\"",
"lint": "eslint --config ./.eslintrc.js \"**/*.ts\"",