Skip to content

Use new-style worker bindings #603

Use new-style worker bindings

Use new-style worker bindings #603

Workflow file for this run

name: Changesets
on:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
changesets:
name: Changesets 🦋
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
token: ${{ secrets.DEPLOY_GITHUB_TOKEN }}
- uses: ./.github/workflows/actions/prepare
# @see https://github.com/changesets/action
- uses: changesets/action@v1
with:
title: 'Publish packages 🚀'
commit: 'Publish packages'
version: pnpm run packages.version
publish: pnpm exec changeset tag
env:
GITHUB_TOKEN: ${{ secrets.DEPLOY_GITHUB_TOKEN }}