Merge branch 'main' into dev

This commit is contained in:
2022-09-21 14:57:29 +02:00
committed by GitHub
4 changed files with 16 additions and 25 deletions

28
entrypoint.sh Executable file → Normal file
View File

@@ -1,39 +1,31 @@
#!/bin/sh
#!/bin/bash
# e is for exiting the script automatically if a command fails, u is for exiting if a variable is not set
# x would be for showing the commands before they are executed
set -eu
set -eux
# FUNCTIONS
# Function for setting up git env in the docker container (copied from https://github.com/stefanzweifel/git-auto-commit-action/blob/master/entrypoint.sh)
_git_setup ( ) {
cat <<- EOF > $HOME/.netrc
machine github.com
login $GITHUB_ACTOR
password $GITHUB_TOKEN
machine api.github.com
login $GITHUB_ACTOR
password $GITHUB_TOKEN
EOF
chmod 600 $HOME/.netrc
git config --global user.email "actions@github.com"
git config --global user.name "GitHub Action"
}
echo "Installing dependencies..."
pip3 install --no-cache-dir -r $INPUT_PIP_PATH
pip3 install -U pip wheel pygraphviz
pip3 install --no-cache-dir -r "$INPUT_PIP_PATH"
echo "Creating data model..."
cd $INPUT_PROJECT_PATH
python3 manage.py graph_models -a -g -o $INPUT_OUTPUT_PATH
cd "$INPUT_PROJECT_PATH"
python3 manage.py graph_models -a -g -o "$INPUT_OUTPUT_PATH"
# To keep runtime good, just continue if something was changed
if [[ `$(git status -s)` ]];
then
if [[ `git status --porcelain` ]]; then
# Calling method to configure the git environemnt
_git_setup
# Commit and push changes back
git commit -a -m "$INPUT_COMMIT_MESSAGE" --author="$GITHUB_ACTOR <$GITHUB_ACTOR@users.noreply.github.com>"
git add "$INPUT_OUTPUT_PATH"
git commit -am "$INPUT_COMMIT_MESSAGE" --author="$GITHUB_ACTOR <$GITHUB_ACTOR@users.noreply.github.com>"
git push origin
echo "Changes pushed successfully."
else