diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index cc28dce..fdc6e11 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -38,6 +38,12 @@ jobs: if: runner.os == 'Linux' run: npx vsce package + - name: Set git identity + if: success() && startsWith(github.ref, 'refs/tags/') && runner.os == 'Linux' + run: | + git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" + git config --local user.name "github-actions[bot]" + - name: Publish if: success() && startsWith(github.ref, 'refs/tags/') && runner.os == 'Linux' run: npx vsce publish ${{ github.ref_name }}