Skip to content

yarn: bump @types/node from 20.8.9 to 20.8.10 (#213) #182

yarn: bump @types/node from 20.8.9 to 20.8.10 (#213)

yarn: bump @types/node from 20.8.9 to 20.8.10 (#213) #182

on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@ca6063f4ed81b55db15b8c42d1b6f7925866342d # v3
id: release
with:
default-branch: main
release-type: node
package-name: release-please-action
include-v-in-tag: false
bump-minor-pre-major: true
bump-patch-for-minor-pre-major: true
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
if: ${{ steps.release.outputs.release_created }}
- run: rm -rf dist
if: ${{ steps.release.outputs.release_created }}
- uses: ./.github/actions/yarn
if: ${{ steps.release.outputs.release_created }}
- run: yarn build
if: ${{ steps.release.outputs.release_created }}
- run: npm set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
if: ${{ steps.release.outputs.release_created }}
- run: npm publish
if: ${{ steps.release.outputs.release_created }}