Skip to content

Commit

Permalink
fix: name package
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySerfaty committed Feb 6, 2024
1 parent b378d4b commit ff05565
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CD
on:
push:
branches:
- main

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: git config
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: Setup
uses: ./.github/actions/setup

- name: Build package
run: yarn prepare
- run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
- run: yarn release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "tentap",
"name": "@10play/tentap-editor",
"version": "0.1.0",
"description": "React Native Rich Text Editor",
"main": "lib/commonjs/index",
Expand Down

0 comments on commit ff05565

Please sign in to comment.