Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
docker
/
build-push-action
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Security
Insights
Additional navigation options
Code
Pull requests
Actions
Security
Insights
Files
1dc7386
.github
.yarn
__mocks__
__tests__
dist
src
test
.dockerignore
.editorconfig
.eslintignore
.eslintrc.json
.gitattributes
.gitignore
.prettierignore
.prettierrc.json
.yarnrc.yml
LICENSE
README.md
TROUBLESHOOTING.md
action.yml
codecov.yml
dev.Dockerfile
docker-bake.hcl
jest.config.ts
package.json
tsconfig.json
yarn.lock
Breadcrumbs
build-push-action
/
package.json
Blame
Blame
Latest commit
History
History
48 lines (48 loc) · 1.33 KB
Breadcrumbs
build-push-action
/
package.json
Top
File metadata and controls
Code
Blame
48 lines (48 loc) · 1.33 KB
Raw
{ "name": "docker-build-push", "description": "Build and push Docker images", "main": "src/main.ts", "scripts": { "build": "ncc build --source-map --minify --license licenses.txt", "lint": "yarn run prettier && yarn run eslint", "format": "yarn run prettier:fix && yarn run eslint:fix", "eslint": "eslint --max-warnings=0 .", "eslint:fix": "eslint --fix .", "prettier": "prettier --check \"./**/*.ts\"", "prettier:fix": "prettier --write \"./**/*.ts\"", "test": "jest" }, "repository": { "type": "git", "url": "git+https://github.com/docker/build-push-action.git" }, "keywords": [ "actions", "docker", "build", "push" ], "author": "Docker Inc.", "license": "Apache-2.0", "packageManager": "yarn@3.6.3", "dependencies": { "@actions/core": "^1.11.1", "@docker/actions-toolkit": "0.61.0", "handlebars": "^4.7.7" }, "devDependencies": { "@types/node": "^20.12.12", "@typescript-eslint/eslint-plugin": "^7.9.0", "@typescript-eslint/parser": "^7.9.0", "@vercel/ncc": "^0.38.1", "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-jest": "^28.5.0", "eslint-plugin-prettier": "^5.1.3", "jest": "^29.7.0", "prettier": "^3.2.5", "ts-jest": "^29.1.2", "ts-node": "^10.9.2", "typescript": "^5.4.5" } }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
You can’t perform that action at this time.