From ca21213f8bcd42d9db760d0fedf6730419799dcd Mon Sep 17 00:00:00 2001 From: Naveen Sakthivel Date: Mon, 2 Aug 2021 13:44:58 +0530 Subject: [PATCH] updated git config in action --- .github/workflows/publish-package_test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/publish-package_test.yml b/.github/workflows/publish-package_test.yml index 8dbc672..21e9233 100644 --- a/.github/workflows/publish-package_test.yml +++ b/.github/workflows/publish-package_test.yml @@ -18,6 +18,11 @@ jobs: registry-url: 'https://npm.pkg.github.com' # Defaults to the user or organization that owns the workflow file scope: '@teamdotworld' + - name: setup git config + run: | + # setup the username and email. I tend to use 'GitHub Actions Bot' with no email by default + git config user.name "GitHub Actions Bot" + git config user.email "<>" - run: npm install - run: npm run release -- minor --ci env: