Skip to content

feat: refactor signInWithSSO types to work with docs (#644) #315

feat: refactor signInWithSSO types to work with docs (#644)

feat: refactor signInWithSSO types to work with docs (#644) #315

Workflow file for this run

name: Release
on:
push:
branches:
- master
- next
- rc
workflow_dispatch:
jobs:
release:
name: Release / Node ${{ matrix.node }}
strategy:
matrix:
node: ['18']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: |
npm ci
npm run build
- name: Create a release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}