init auto release project

This commit is contained in:
Adrien Beaudouin 2024-08-22 18:58:56 +02:00
parent 31a03d30e2
commit e1c03de704
5 changed files with 33299 additions and 4 deletions

View File

@ -13,4 +13,4 @@ inputs:
runs:
using: node20
main: index.js
main: dist/index.js

33275
release/dist/index.js vendored Normal file

File diff suppressed because one or more lines are too long

3
release/dist/package.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"type": "module"
}

View File

@ -11,6 +11,9 @@
"dependencies": {
"@actions/core": "^1.10.1",
"gitea-api": "^1.17.3-1"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1"
}
},
"node_modules/@actions/core": {
@ -42,6 +45,16 @@
"node": ">=14"
}
},
"node_modules/@vercel/ncc": {
"version": "0.38.1",
"resolved": "https://registry.npmjs.org/@vercel/ncc/-/ncc-0.38.1.tgz",
"integrity": "sha512-IBBb+iI2NLu4VQn3Vwldyi2QwaXt5+hTyh58ggAMoCGE6DJmPvwL3KPBWcJl1m9LYPChBLE980Jw+CS4Wokqxw==",
"dev": true,
"license": "MIT",
"bin": {
"ncc": "dist/ncc/cli.js"
}
},
"node_modules/gitea-api": {
"version": "1.17.3-1",
"resolved": "https://registry.npmjs.org/gitea-api/-/gitea-api-1.17.3-1.tgz",

View File

@ -2,15 +2,19 @@
"name": "gitea-auto-release",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"description": "",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"package": "ncc build index.js -o dist"
},
"dependencies": {
"@actions/core": "^1.10.1",
"gitea-api": "^1.17.3-1"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1"
}
}