Skip to content

fix: crash on errors when saving workout sample #58

fix: crash on errors when saving workout sample

fix: crash on errors when saving workout sample #58

Workflow file for this run

name: Release
on:
workflow_dispatch:
push:
paths:
- ".changeset/**"
branches:
- main
- master
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version-file: ".bun-version"
- run: HUSKY=0 bun install --ignore-scripts
env:
HUSKY: 0
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
# This expects you to have a script called release which does a build for your packages and calls changeset publish
publish: bun run changeset-release
createGithubReleases: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}