Skip to content

Commit

Permalink
docs(text): update README, release test
Browse files Browse the repository at this point in the history
  • Loading branch information
shellscape committed Sep 26, 2023
1 parent 1091b53 commit e9d92d8
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 53 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,16 @@ jobs:
- name: Checkout Commit
uses: actions/checkout@v4
with:
ref: main
fetch-depth: 10
ref: main
token: ${{ secrets.GH_TOKEN }}

- name: Set Git Config
run: |
git config pull.rebase false
git config --global user.email "[email protected]"
git config --global user.name "Release Workflow"
git remote set-url origin https://github.com/${{ github.repository }}
- name: Setup Node
uses: actions/setup-node@v3
Expand Down
33 changes: 33 additions & 0 deletions packages/text/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# @jsx-email/text

## Install

Install component from your command line.

#### With yarn

```sh
yarn add @react-email/text -E
```

#### With npm

```sh
npm install @react-email/text -E
```

## Getting started

Add the component to your email template. Include styles where needed.

```jsx
import { Text } from "@jsx-email/text";

const Email = () => {
return <Text>Lorem ipsum</Text>;
};
```

## License

[MIT License](./LICENSE.md)
52 changes: 0 additions & 52 deletions packages/text/readme.md

This file was deleted.

0 comments on commit e9d92d8

Please sign in to comment.