Bump @metamask/auto-changelog from 3.2.0 to 3.3.0 (#516) #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Deploy Storybook | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-deploy-storybook: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
# We check out the pull request's base branch, which will be | |
# used as the base branch for all git operations. | |
ref: ${{ github.event.pull_request.base.ref }} | |
- name: Get Node.js version | |
id: nvm | |
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc) | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ steps.nvm.outputs.NODE_VERSION }} | |
- run: yarn | |
- uses: MetaMask/action-publish-gh-pages@v2 | |
with: | |
build-command: build-storybook | |
source-directory: storybook-static | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |