diff --git a/.github/workflow/publish.yml b/.github/workflow/publish.yml index 1688a8e..38639d9 100644 --- a/.github/workflow/publish.yml +++ b/.github/workflow/publish.yml @@ -18,14 +18,11 @@ jobs: registry-url: 'https://npm.pkg.github.com' scope: '@${{ github.repository_owner }}' - - - name: Git config + - name: Bump version run: | git config --global user.email "github-actions@users.noreply.github.com" git config --global user.name "github-actions" - - - name: Bump version - run: npm version patch + npm version patch - name: Install dependencies run: npm ci