Skip to content

chore(deps): update node.js to v24 (#103) #107

chore(deps): update node.js to v24 (#103)

chore(deps): update node.js to v24 (#103) #107

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
permissions:
id-token: write
contents: write
pull-requests: write
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
with:
fetch-depth: 0
- uses: ./.github/workflows/actions/install
- name: Create Release PR and publish to npm
id: changesets
uses: changesets/action@v1
with:
title: 'release: bump packages'
# This expects you to have a script called release which does a build for your packages and calls changeset publish
version: bun run version
publish: bun run publish:all
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: true