diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3cafbcf..40e207a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -17,17 +17,5 @@ jobs: id: release with: release-type: node - command: github-release # extra-files: | # README.md - - uses: actions/checkout@v2 - - name: tag major versions - if: ${{ steps.release.outputs.release_created }} - run: | - git config user.name github-actions[bot] - git config user.email 41898282+github-actions[bot]@users.noreply.github.com - git remote add gh-token "https://${{ secrets.GITHUB_TOKEN }}@github.com/google-github-actions/release-please-action.git" - git tag -d v${{ steps.release.outputs.major }} || true - git push origin :v${{ steps.release.outputs.major }} || true - git tag -a v${{ steps.release.outputs.major }} -m "Release v${{ steps.release.outputs.major }}" - git push origin v${{ steps.release.outputs.major }}