From 8f1960f4146f3d0fc4879a62ad91982a5d05a575 Mon Sep 17 00:00:00 2001 From: James Brumond Date: Fri, 18 Aug 2023 20:25:38 -0700 Subject: [PATCH] rename file to be consistent --- action.yaml | 2 +- main.js => index.js | 0 package.json | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename main.js => index.js (100%) diff --git a/action.yaml b/action.yaml index d68500b..ccc7391 100644 --- a/action.yaml +++ b/action.yaml @@ -2,7 +2,7 @@ name: Docker Tag description: Tags an existing container manifest in a remote registry without pulling/pushing any images runs: using: node16 - main: dist/main.js + main: dist/index.js inputs: registry: description: URL to the container registry diff --git a/main.js b/index.js similarity index 100% rename from main.js rename to index.js diff --git a/package.json b/package.json index 13fd44f..346b45d 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "private": true, "scripts": { "lint": "eslint .", - "prepare": "ncc build main.js -o dist --source-map --license licenses.txt", + "prepare": "ncc build index.js -o dist --source-map --license licenses.txt", "all": "npm run lint && npm run prepare" }, "dependencies": {