Skip to content
This repository was archived by the owner on Feb 15, 2025. It is now read-only.

Commit 95434ee

Browse files
committed
added release-changsets.yaml
1 parent d6b384b commit 95434ee

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: release
2+
on:
3+
fork: # push
4+
branches:
5+
- master
6+
7+
jobs:
8+
release:
9+
name: Release
10+
runs-on: ubuntu-latest
11+
steps:
12+
13+
# Checkout Project
14+
- name: 📚 Checkout
15+
uses: actions/checkout@v2
16+
17+
# Setup NodeJS
18+
- name: 🟢 Setup Node ${{ matrix.node_version }}
19+
uses: actions/setup-node@v1
20+
with:
21+
node-version: 12
22+
23+
# Install Dependencies
24+
- name: ⏳ Install Dependencies
25+
run: yarn install
26+
27+
# Creates Release Pull Request with help of 'Changesets'
28+
- name: 🚀 Create Release Pull Request
29+
uses: changesets/action@master
30+
env:
31+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)