Skip to content

feat: show selectors on products with creator-as-registry (#1550) #1143

feat: show selectors on products with creator-as-registry (#1550)

feat: show selectors on products with creator-as-registry (#1550) #1143

Workflow file for this run

name: Release
on:
push:
branches:
- main
- '2.6.x'
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'npm'
- name: Install Dependencies
run: npm ci
env:
PUPPETEER_SKIP_DOWNLOAD: 'true'
- name: Create Release Pull Request or Tag Release
id: changesets
uses: changesets/action@v1
with:
version: npm run version
publish: npx --no-install changeset tag
commit: 'Version Packages'
title: 'Version Packages'
createGithubReleases: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}