From 69098bd85c6b83571251b08a85d55b3c0039ef05 Mon Sep 17 00:00:00 2001 From: fbenevides Date: Thu, 28 Jul 2022 18:55:44 +0200 Subject: [PATCH] Set git user before creating a tag --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 42894583..3d168aa8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -62,6 +62,9 @@ jobs: ruby-version: '2.6' - run: | gem install cocoapods + + git config user.email "pusher-ci@pusher.com" + git config user.name "Pusher CI" git tag -a ${{ needs.build.outputs.tag }} -m "${{ needs.build.outputs.tag }}" git push origin ${{ needs.build.outputs.tag }}