From 900382bfabf90312b55caf657bacc9c41bc73857 Mon Sep 17 00:00:00 2001 From: rfehling-mittwald <76118789+rfehling-mittwald@users.noreply.github.com> Date: Thu, 21 Oct 2021 08:45:57 +0200 Subject: [PATCH] Remove git config -l due to git issues (#59) Run git config --global -l fatal: unable to read config file '/home/runner/.gitconfig': No such file or directory Git crashes if the file does not exists (wtf?!), but will create the file on config set commands. --- .github/workflows/release.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 30e33b8..5497172 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,6 @@ jobs: - run: npm config set '//registry.npmjs.org/:_authToken' "${{ secrets.NPM_TOKEN }}" - run: yarn - run: yarn compile - - run: git config --global -l - run: git config --global user.email opensource@mittwald.de - run: git config --global user.name Mittwald Release Bot - run: npm version from-git