From 0fc7ab8b40907eb2228d5b061e4d93f4ed9aaab4 Mon Sep 17 00:00:00 2001 From: lucirezac Date: Thu, 28 Mar 2024 07:14:20 +0100 Subject: [PATCH] GO-165 Add git config --- .github/workflows/Release.yml | 6 ++++++ create-cdn-pr.sh | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index 1a23dcc..aabd4ba 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -26,6 +26,12 @@ jobs: repository: maptiler/cdn.maptiler.com token: ${{ env.GITHUB_TOKEN }} + - name: Configure Git + run: | + git config user.email "sysadmin@klokantech.com" + git config user.name "klokantechsysadmin" + working-directory: ${{ env.WORKDIR }}/cdn.maptiler.com + release: name: Build and release CDN runs-on: [ self-hosted, fernando ] diff --git a/create-cdn-pr.sh b/create-cdn-pr.sh index e06e53b..6391105 100755 --- a/create-cdn-pr.sh +++ b/create-cdn-pr.sh @@ -26,6 +26,6 @@ git reset maptiler-geocoding-control/v$VERSION/*.tgz git commit -m "Add maptiler-geocoding-control v$VERSION" -git push -u origin maptiler-geocoding-control-$VERSION +git push origin maptiler-geocoding-control-$VERSION gh pr create --base main --fill --repo maptiler/cdn.maptiler.com