Skip to content

chore: update all dependencies #239

chore: update all dependencies

chore: update all dependencies #239

Workflow file for this run

name: Release
on:
pull_request:
types: [closed]
branches:
- main
workflow_dispatch:
permissions:
id-token: write # Required for OIDC
contents: write # required for committing the version bump
jobs:
Release:
name: 🚀 Release
if: github.event_name == 'workflow_dispatch' || github.event.pull_request.merged && startsWith(github.head_ref, 'release-please--branches--main')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 24
cache: "yarn"
registry-url: "https://registry.npmjs.org"
- name: Install Dependencies
run: yarn install --immutable
- name: Publish package
run: npm publish