Update script paths

This commit is contained in:
Corey Butler 2020-04-01 12:32:38 -05:00
parent 2d7ff4f878
commit 4fa1023419
2 changed files with 4 additions and 1 deletions

View File

@ -2,4 +2,4 @@ FROM node:13-alpine
ADD ./app /app
WORKDIR /app
RUN npm i
CMD ["node", "main.js"]
CMD ["npm", "start"]

View File

@ -4,6 +4,9 @@
"private": true,
"description": "Automatically create a tag whenever the version changes in package.json",
"main": "lib/main.js",
"scripts": {
"start": "node ./main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/butlerlogic/action-autotag.git"