From ac8a38c8b90425308b5a06e454b913cb577cce6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Charrier?= Date: Wed, 12 Feb 2020 16:41:44 +0100 Subject: [PATCH] Do not stay in GitHub workspace to not have Gemfile conflict If the current project is a Ruby one, the Docker image's Ruby version can diverge from the Gemfile one. By staying in another folder, we'll avoid this kind of situation. --- entrypoint.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/entrypoint.sh b/entrypoint.sh index 7a070bd9..fafe1b6a 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,4 +1,5 @@ #!/bin/sh -l +cd /home gem install bump-cli $GEM_HOME/bin/bump $1 ${GITHUB_WORKSPACE}/$2 --id $3 --token $4 --validation $5