From 83565d1f2efe627c71c2b3ff78dd7c663ed7b767 Mon Sep 17 00:00:00 2001 From: Eric Loots Date: Mon, 29 Jun 2020 10:33:10 +0200 Subject: [PATCH] Add global user/email git config --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0eb1feaf8..03838d7a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -104,14 +104,14 @@ jobs: - name: Studentify Repo run: | mkdir -p studentified + git config --global user.email "no-reply@lunatech.com" + git config --global user.name "Lunatech Labs" (cd CMT/ && exec sbt "studentify -dot -g ../lunatech-scala-2-to-scala3-course ../studentified") (cd studentified && exec zip -r lunatech-scala-2-to-scala3-course-student.zip lunatech-scala-2-to-scala3-course) - name: Linearize Repo run: | mkdir -p linearized - git config --global user.email "no-reply@lunatech.com" - git config --global user.name "Lunatech Labs" (cd CMT/ && exec sbt "linearize -dot ../lunatech-scala-2-to-scala3-course ../linearized") mv linearized/lunatech-scala-2-to-scala3-course linearized/lunatech-scala-2-to-scala3-course-linearized (cd linearized && exec zip -r lunatech-scala-2-to-scala3-course-linearized.zip lunatech-scala-2-to-scala3-course-linearized)