From 0008b8b44bd9436535e43336af56c8a39b568fbd Mon Sep 17 00:00:00 2001 From: Caleb Cox Date: Tue, 29 Oct 2024 20:17:09 -0500 Subject: [PATCH] Add back git config step --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index adb0871..44b53fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,6 +48,10 @@ jobs: registry-url: "https://registry.npmjs.org" scope: "@cruglobal" - run: yarn install --immutable --immutable-cache + - name: 👤 Configure git + run: | + git config --global user.name 'GitHub Action' + git config --global user.email 'github-action@users.noreply.github.com' - name: 🎁 Publish package to npm run: yarn publish --access public --new-version ${{ github.event.release.tag_name }} env: