Skip to content

chore: cra-demo uses repo default dependencies (#58) #18

chore: cra-demo uses repo default dependencies (#58)

chore: cra-demo uses repo default dependencies (#58) #18

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
# IMPORTANT: prevent this action from running on forks
if: ${{ github.repository_owner == 'formspree' }}
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: yarn
cache-dependency-path: yarn.lock
- name: Install Dependencies
run: yarn install --frozen-lockfile
# This action will either create a new Release pull request with
# all of the package versions and changelogs updated if there're
# existing changesets or it will publish the packages to npm.
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
publish: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}