From 47ffde26f043a43eab19c6d8b4c728dee45cb81c Mon Sep 17 00:00:00 2001 From: Abdul Khan <90177779+theboyisno-one@users.noreply.github.com> Date: Tue, 12 Aug 2025 13:02:05 +0530 Subject: [PATCH] document workaround for npm 404 error on local https://github.com/aws-actions/aws-codebuild-run-build/issues/170 --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index bdf7f3b..466edd2 100644 --- a/README.md +++ b/README.md @@ -288,6 +288,13 @@ you must first `git checkout` the commit that you want to test. npx @aws-actions/codebuild-run-build -p ProjectName -r remoteName ``` +Note: If the above command returns a 404 error, you might need to add the package manually. +``` +npm install git@github.com:aws-actions/aws-codebuild-run-build.git +# OR +yard add git@github.com:aws-actions/aws-codebuild-run-build.git +``` + This will use whatever commit you have checked out and push to a temporary branch in the specified remote. Then kick off the build