Skip to content

Commit

Permalink
fixed environment variables in script (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-rozario authored Apr 23, 2023
1 parent 8171f66 commit 3ddff18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ set -e
sh -c "ls"

git config --global --add safe.directory /github/workspace
git config --global user.name '${GITHUB_ACTOR}'
git config --global user.email '${GITHUB_ACTOR}@users.noreply.github.com'
git config --global user.name "$GITHUB_ACTOR"
git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
git add -A
git commit -m "Updated $INPUT_PROJECT_NAME requirements file"
git push -u origin HEAD

0 comments on commit 3ddff18

Please sign in to comment.