Skip to content

Commit

Permalink
add react-19 dist tag
Browse files Browse the repository at this point in the history
  • Loading branch information
calebpollman committed Dec 17, 2024
1 parent 17c44fe commit bcd3ce2
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/publish-react-19.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Description: This workflow runs unit + e2e tests, then publishes UI packages
# to a custom dist NPM tag of your choice. This is intended to run
# on release branches (e.g. `in-app-messaging/release`).
#
# Triggered by: This runs whenever you push a commit to the specified release branch.
#
# To use: replace <BRANCH> with your release branch name. Replace <TAG> with
# your NPM tag name.

name: Test and Publish / react-19

on:
# You may change this to `pull_request` if you want to run this on a PRs.
# This can be useful for publishing hotfixes quickly to unblock customers,
# but otherwise, we recommend to use a release branch.
push:
branches: [react/bump-react-types]

publish:
uses: ./.github/workflows/reusable-tagged-publish.yml
needs: e2e
with:
dist-tag: react-19
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit bcd3ce2

Please sign in to comment.