Skip to content

chore(deps): bump @radix-ui/react-dialog from 1.1.1 to 1.1.2 #884

chore(deps): bump @radix-ui/react-dialog from 1.1.1 to 1.1.2

chore(deps): bump @radix-ui/react-dialog from 1.1.1 to 1.1.2 #884

Workflow file for this run

name: Release
on:
push:
branches:
- master
- alpha
- beta
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write # to create release (semantic release)
id-token: write # to publish with provenance
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Review
run: yarn review
- name: Release
run: yarn semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}