Skip to content

Commit 131c29b

Browse files
committed
Minimal changes to allow merge with base
1 parent b955be2 commit 131c29b

File tree

3 files changed

+11
-16
lines changed

3 files changed

+11
-16
lines changed

.github/workflows/publish.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,21 @@ concurrency: ${{ github.workflow }}-${{ github.ref }}
1313
jobs:
1414
publish:
1515
if: ${{ github.event.workflow_run.conclusion == 'success' }}
16-
1716
runs-on: ubuntu-latest
18-
19-
permissions:
20-
contents: read
21-
id-token: write
22-
2317
steps:
2418
- uses: actions/checkout@v3
2519
- uses: pnpm/action-setup@v2
2620
- uses: actions/setup-node@v3
2721
with:
28-
registry-url: https://registry.npmjs.org
2922
node-version: 20.x
3023
cache: "pnpm"
3124

3225
- run: pnpm install --frozen-lockfile
33-
- run: pnpm run build
34-
- run: pnpm publish --provenance --access public
26+
- name: Create Release Pull Request or Publish
27+
id: changesets
28+
uses: changesets/action@v1
29+
with:
30+
publish: pnpm run release
3531
env:
36-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
32+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,4 @@
1010
# JS files
1111
*.js
1212
*.txt
13-
*.html
14-
15-
.DS_Store
13+
*.html

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@conversion-ai/md-to-react-email",
3-
"version": "5.0.5-revision.3",
2+
"name": "md-to-react-email",
3+
"version": "5.0.5",
44
"description": "A simple Markdown to jsx parser for email templates written in typescript.",
55
"keywords": [
66
"markdown",
@@ -12,7 +12,7 @@
1212
],
1313
"repository": {
1414
"type": "git",
15-
"url": "git+https://github.com/tapp-ai/md-to-react-email.git"
15+
"url": "https://github.com/codeskills-dev/md-to-react-email.git"
1616
},
1717
"main": "./dist/index.js",
1818
"module": "./dist/index.mjs",

0 commit comments

Comments
 (0)