Skip to content

Commit

Permalink
modify
Browse files Browse the repository at this point in the history
  • Loading branch information
hf authored and hf committed Sep 13, 2023
1 parent 10105ba commit db05da7
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 5 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Publish
on:
push:
branches:
- master
pull_request:
jobs:
build:
strategy:
matrix:
os: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 18
cache: 'yarn'
- name: Install npm dependencies
run: yarn --frozen-lockfile
shell: bash
- name: Publish
run: |
export GH_TOKEN=${{ secrets.GH_TOKEN }}
export NPM_TOKEN=${{ secrets.NPM_TOKEN }}
yarn install
yarn ci:publish
timeout-minutes: 60
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "react-native-webview",
"name": "react-native-webview-multi",
"description": "React Native WebView component for iOS, Android, macOS, and Windows",
"main": "index.js",
"main-internal": "src/index.ts",
"typings": "index.d.ts",
"author": "Jamon Holmgren <[email protected]>",
"author": "codintop <[email protected]>",
"contributors": [
"Thibault Malbranche <malbranche.thibault@gmail.com>"
"codintop <codintop@gmail.com>"
],
"license": "MIT",
"version": "13.6.0",
"homepage": "https://github.com/react-native-webview/react-native-webview#readme",
"homepage": "https://github.com/CodinDotTop/react-native-webview#readme",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
Expand Down Expand Up @@ -72,7 +72,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/react-native-webview/react-native-webview.git"
"url": "https://github.com/CodinDotTop/react-native-webview.git"
},
"files": [
"android/src",
Expand Down

0 comments on commit db05da7

Please sign in to comment.