Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Updates UI shell (#244) #223

Updates UI shell (#244)

Updates UI shell (#244) #223

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
name: Release
# Prevent changesets action from creating a PR on forks
if: github.repository == 'Qiskit/web-components'
runs-on: ubuntu-latest
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
- uses: actions/setup-node@v3
with:
node-version: '16.x'
cache: 'npm'
- run: npm ci
- name: Create release pull request or publish to npm
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: npm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}