Skip to content

Commit b37359c

Browse files
author
Matt Shirley
committed
🔖 bump version to 1.0.1
1 parent cec27e1 commit b37359c

File tree

4 files changed

+27
-47
lines changed

4 files changed

+27
-47
lines changed

.github/workflows/cd-workflow.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CD Workflow
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.x'
15+
registry-url: 'https://registry.npmjs.org'
16+
- run: yarn install
17+
- run: yarn publish --access public
18+
env:
19+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
20+
# - uses: actions/setup-node@v1
21+
# with:
22+
# registry-url: 'https://npm.pkg.github.com'
23+
# - run: yarn publish
24+
# env:
25+
# NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test.yml renamed to .github/workflows/ci-workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI
1+
name: CI Workflow
22

33
on: [push, pull_request]
44

.github/workflows/publish.yml

-45
This file was deleted.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-midi-hook",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "React hook to easily use MIDI inputs via the Web MIDI API.",
55
"author": "matthewshirley",
66
"license": "MIT",

0 commit comments

Comments
 (0)