Skip to content

Merge pull request #142 from modernweb-dev/feat/export-create-addon #55

Merge pull request #142 from modernweb-dev/feat/export-create-addon

Merge pull request #142 from modernweb-dev/feat/export-create-addon #55

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
release:
# Prevents changesets action from creating a PR on forks
if: github.repository == 'modernweb-dev/storybook-prebuilt'
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: Setup Node.js 14.x
uses: actions/setup-node@master
with:
node-version: 14.x
registry-url: 'https://registry.npmjs.org'
- name: Install Dependencies
run: npm ci
- name: Build package
run: npm run build
- name: Setup Git User
run: |
git config --global user.email "[email protected]"
git config --global user.name "Modern Web"
- name: Release & Publish
run: npm run release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}