mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-26 19:43:55 +03:00
37 lines
875 B
YAML
37 lines
875 B
YAML
|
name: Release
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
|
||
|
jobs:
|
||
|
release:
|
||
|
name: Release
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout Repo
|
||
|
uses: actions/checkout@v2
|
||
|
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
|
||
|
uses: actions/setup-node@v2
|
||
|
with:
|
||
|
node-version: 'lts/*'
|
||
|
cache: 'yarn'
|
||
|
|
||
|
- name: Install Dependencies
|
||
|
run: yarn install
|
||
|
|
||
|
- name: Create Release Pull Request or Publish to npm
|
||
|
id: changesets
|
||
|
uses: changesets/action@v1
|
||
|
with:
|
||
|
version: yarn changeset version
|
||
|
publish: yarn changeset publish
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|