Skip to content

chore(deps): update all non-major dependencies (#111) #115

chore(deps): update all non-major dependencies (#111)

chore(deps): update all non-major dependencies (#111) #115

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@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
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