Skip to content
This repository has been archived by the owner on Oct 10, 2021. It is now read-only.

fix(ci): Restore Docker Image CI test job functionality #28

Merged
merged 2 commits into from
Apr 4, 2021
Merged
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
6 changes: 6 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
#!/bin/sh -l
# shellcheck disable=SC2039

# For Docker Image CI test job
if [ "$REPO" = "ScottBrenner/generate-changelog-action" ]; then
git clone --quiet https://github.com/"$REPO"
cd generate-changelog-action || exit
fi

if [ "$1" ] && [ "$1" != "package.json" ]; then
cp "$1" package.json
fi
Expand Down