From 55d74d182e8629a2f12497a585432055923d52c0 Mon Sep 17 00:00:00 2001 From: Michael Latman Date: Tue, 26 Nov 2024 23:51:06 -0500 Subject: [PATCH] Github action update --- .github/workflows/publish.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1fea90f..291ffc3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -22,11 +22,16 @@ jobs: registry-url: 'https://registry.npmjs.org' - name: Install dependencies - run: npm install + run: npm ci - name: Build project run: npm run build + - name: Configure Git + run: | + git config --local user.email "action@github.com" + git config --local user.name "GitHub Action" + - name: Bump version run: | npm version patch -m "chore: bump version to %s [skip ci]"