diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d693e3c..f81f820 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,9 +24,14 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 16.x + - name: configure git + run: | + git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" + git config --global user.name "github-actions[bot]" - run: npm version "${MAJOR}.${MINOR}.${PATCH}" - - run: | + - name: update tags + run: | git push origin main git push origin "v${MAJOR}.${MINOR}.${PATCH}" git tag -fa "v${MAJOR}.${MINOR}" -m "setup-ndk v${MAJOR}.${MINOR}.${PATCH}"