Skip to content

Commit

Permalink
ci: use default release-please command config
Browse files Browse the repository at this point in the history
  • Loading branch information
jthegedus committed Mar 9, 2023
1 parent e775639 commit de76e09
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit de76e09

Please sign in to comment.