Skip to content

Commit 161e4ee

Browse files
Merge pull request #19 from SimformSolutionsPvtLtd/feature/UNT-T8496
Enable Github publish workflow
2 parents 20bb4e6 + 4d0eb14 commit 161e4ee

File tree

5 files changed

+40
-2
lines changed

5 files changed

+40
-2
lines changed

.github/workflows/publish.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: "🚀 Publish"
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
release:
10+
name: 🚀 Publish
11+
runs-on: macos-11
12+
steps:
13+
- name: 📚 checkout
14+
uses: actions/[email protected]
15+
- name: 🟢 node
16+
uses: actions/[email protected]
17+
with:
18+
node-version: 16
19+
registry-url: https://registry.npmjs.org
20+
- name: 🚀 Build & Publish
21+
run: yarn install && yarn publish --access public
22+
env:
23+
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}

.npmignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.github/
2+
.husky/
3+
example/
4+
patches/
5+
assets/
6+
.prettierrc.js
7+
.eslintignore
8+
.eslintrc
9+
CONTRIBUTING.md
10+
babel.config.js

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
![Radial Slider - Simform](./assets/banner.png)
12
# react-native-radial-slider
23

3-
[![npm version](https://img.shields.io/badge/npm%20package-1.0.0-orange)](https://www.npmjs.org/package/react-native-radial-slider) [![Android](https://img.shields.io/badge/Platform-Android-green?logo=android)](https://www.android.com) [![iOS](https://img.shields.io/badge/Platform-iOS-green?logo=apple)](https://developer.apple.com/ios) [![MIT](https://img.shields.io/badge/License-MIT-green)](https://opensource.org/licenses/MIT)
4+
[![npm version](https://img.shields.io/badge/npm%20package-0.0.1-orange)](https://www.npmjs.org/package/react-native-radial-slider) [![Android](https://img.shields.io/badge/Platform-Android-green?logo=android)](https://www.android.com) [![iOS](https://img.shields.io/badge/Platform-iOS-green?logo=apple)](https://developer.apple.com/ios) [![MIT](https://img.shields.io/badge/License-MIT-green)](https://opensource.org/licenses/MIT)
45

56
---
67

assets/banner.png

162 KB
Loading

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-radial-slider",
3-
"version": "1.0.0",
3+
"version": "0.0.1",
44
"description": "React Native component to select or highlight a specific value from a range of values",
55
"homepage": "https://github.com/SimformSolutionsPvtLtd/react-native-radial-slider/blob/main/README.md",
66
"main": "lib/index.js",
@@ -10,6 +10,10 @@
1010
"files": [
1111
"lib"
1212
],
13+
"repository": {
14+
"type": "git",
15+
"url": "https://github.com/SimformSolutionsPvtLtd/react-native-radial-slider"
16+
},
1317
"keywords": [
1418
"react",
1519
"react-native",

0 commit comments

Comments
 (0)