mirror of
https://github.com/redhat-actions/push-to-registry.git
synced 2025-05-03 19:59:55 +02:00
first implementation push to quay action
Signed-off-by: Luca Stocchi <lstocchi@redhat.com>
This commit is contained in:
commit
9a0a0927cd
11 changed files with 4046 additions and 0 deletions
23
package.json
Normal file
23
package.json
Normal file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"name": "push-to-quay-action",
|
||||
"version": "0.0.1",
|
||||
"description": "Action to push images to quay",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"compile": "tsc -p .",
|
||||
"bundle": "ncc build src/index.ts --source-map --minify",
|
||||
"clean": "rm -rf out/ dist/",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "Luca",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@actions/core": "^1.2.6",
|
||||
"@actions/exec": "^1.0.4",
|
||||
"@actions/io": "^1.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^12.12.7",
|
||||
"typescript": "^4.0.5"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue