Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions .github/scripts/verify-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
# Check if build output at dist is uptodate or not

# Check files updated in working dir
#git diff
#git status dist -s
#
git diff
git status dist -s

## Raise error if more than 1 files changed in working dir
#if [[ ! -z $(git status dist -s) ]]; then
# echo "Build at dist is outdated. Update build, push and try again."
# exit 1
#fi
exit 0
if [[ ! -z $(git status dist -s) ]]; then
echo "Build at dist is outdated. Update build, push and try again."
exit 1
fi
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ outputs:
description: "Execution command ID generated by AWS send command API"

runs:
using: "node16"
using: "node20"
main: "dist/index.js"
Loading