Skip to content

Commit 59a4dfb

Browse files
committed
ci: prepare release of v1.0.6
1 parent 018cab1 commit 59a4dfb

File tree

4 files changed

+45
-2
lines changed

4 files changed

+45
-2
lines changed

.github/workflows/npm-publish.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Node.js Package
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-node@v1
13+
with:
14+
node-version: 12.16
15+
- run: npm ci
16+
- run: npm run build
17+
- run: npm test
18+
19+
publish-npm:
20+
needs: build
21+
runs-on: ubuntu-latest
22+
steps:
23+
- uses: actions/checkout@v2
24+
- uses: actions/setup-node@v1
25+
with:
26+
node-version: 12.16
27+
registry-url: https://registry.npmjs.org/
28+
- run: npm ci
29+
- run: npm run build
30+
- run: npm publish
31+
env:
32+
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77

8-
## [unreleased]
8+
## [1.0.6] - 2020-08-31
9+
10+
- Update README to reflect upcoming v2
11+
- Release new version of v1 to fix missing beta tag in first v2 beta release
12+
13+
14+
## [1.0.5] - 2019-10-11
915

1016
- Update all packages
1117
- Update to Babel 7

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# react-tabbordion
22
[![Version](http://img.shields.io/npm/v/react-tabbordion.svg)](https://www.npmjs.org/package/react-tabbordion)
3+
[![NPM-Size](https://flat.badgen.net/bundlephobia/minzip/react-tabbordion)](https://www.npmjs.com/package/react-tabbordion)
34
[![Build Status](https://travis-ci.org/Merri/react-tabbordion.svg)](https://travis-ci.org/Merri/react-tabbordion)
45

6+
> Version 2.0 is now on beta, check it out!
7+
> `npm install react-tabbordion@beta`
8+
> For more information see [v2 branch @ GitHub](https://github.com/Merri/react-tabbordion/tree/v2)
9+
510
**Tabbordion** is a component for managing active state between multiple items. You can make anything out of it:
611

712
- Tabs component

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-tabbordion",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"description": "React Tabs, Accordion, Panel, Checkbox list, Radio list Component",
55
"main": "dist/module/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)