Skip to content

Commit b426344

Browse files
authored
Fix deployment (#11)
* Update README.md * Fix deployment * Revert change
1 parent 19f804f commit b426344

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
java-version: 17
2020

2121
- name: Publish to MavenCentral
22-
run: ./gradlew rich-editor-compose:publishReleasePublicationToSonatypeRepository --max-workers 1 closeAndReleaseSonatypeStagingRepository
22+
run: ./gradlew editor:publishReleasePublicationToSonatypeRepository --max-workers 1 closeAndReleaseSonatypeStagingRepository
2323
env:
2424
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
2525
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}

README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,23 @@ Android WYSIWYG Rich editor for Jetpack compose.
55
<img src="./gif/sample.gif" height="540" />
66

77
## Features
8+
89
The editor offers the following <b>options</b>:
910

1011
- [x] **Bold**
1112
- [x] *Italic*
1213
- [x] <u>Underline</u>
1314
- [x] Different Heading
1415

15-
## How to use it?
16+
## How to add in your project
17+
18+
Add the dependency
19+
20+
```gradle
21+
implementation 'com.canopas.editor:rich-editor-compose:X.X.X'
22+
```
23+
24+
## How to use ?
1625

1726
```
1827
@Composable

0 commit comments

Comments
 (0)