mirror of
https://github.com/actions/publish-action.git
synced 2025-02-24 16:22:31 +00:00
* Update workflows to use reusable-workflows * Update workflows * Add links to reusable workflows * Update action to use reusable-workflows repo * Fix review points
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"name": "publish-action",
|
|
"version": "0.2.1",
|
|
"description": "Update the major version tag (v1, v2, etc.) to point to the specified tag",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc && ncc build",
|
|
"test": "jest",
|
|
"format-check": "echo \"Fake command that does nothing. It is used in reusable workflows\"",
|
|
"lint": "echo \"Fake command that does nothing. It is used in reusable workflows\""
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/publish-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"publish"
|
|
],
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/actions/publish-action/issues"
|
|
},
|
|
"homepage": "https://github.com/actions/publish-action#readme",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.7",
|
|
"@actions/http-client": "^1.0.11",
|
|
"@actions/github": "^4.0.0",
|
|
"semver": "^7.3.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.0.2",
|
|
"@types/semver": "^7.3.6",
|
|
"@vercel/ncc": "^0.28.5",
|
|
"jest": "^27.2.5",
|
|
"jest-circus": "^27.2.5",
|
|
"ts-jest": "^27.0.5",
|
|
"typescript": "^4.2.4"
|
|
}
|
|
}
|