Skip to content

Add empty department list fallback (#46) #56

Add empty department list fallback (#46)

Add empty department list fallback (#46) #56

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: Setup Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: yarn
- name: Install Dependencies
run: yarn install --immutable
- name: Create Release Pull Request or Publish to npm
uses: cometkim/yarn-changeset-action@v1
with:
autoPublish: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}