Skip to content

build(deps-dev): bump the typescript-eslint group with 2 updates (#365) #370

build(deps-dev): bump the typescript-eslint group with 2 updates (#365)

build(deps-dev): bump the typescript-eslint group with 2 updates (#365) #370

name: release-please
on:
push:
branches:
- master
permissions:
contents: write
pull-requests: write
jobs:
release-please:
runs-on: ubuntu-latest
outputs:
release_created: ${{ steps.release.outputs.release_created }}
steps:
- name: Release Please
uses: google-github-actions/release-please-action@v4
with:
release-type: node
id: release
- name: Checkout repository
if: ${{ steps.release.outputs.release_created }}
uses: actions/checkout@v4
- name: Tag major and minor versions
if: ${{ steps.release.outputs.release_created }}
run: |
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
git tag -d v${{ steps.release.outputs.major }} || true
git tag -d v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true
git tag -a v${{ steps.release.outputs.major }} -m 'Release v${{ steps.release.outputs.major }}'
git tag -a v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} -m 'Release v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}'
git push -f origin v${{ steps.release.outputs.major }}
git push -f origin v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}