Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
pontusab committed Dec 29, 2024
1 parent 2b7c1a8 commit 226d8db
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 39 deletions.
File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions .changeset/cuddly-moons-accept.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@languine/react-email": major
---

Added changelog
34 changes: 14 additions & 20 deletions .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,13 @@ jobs:
- name: 🏗️ Build
working-directory: packages/cli
run: bun run build
- name: 🔧 Configure Git
run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
- name: 📝 Create and publish versions
working-directory: packages/cli
run: |
bunx changeset version
git commit -am "chore: update versions"
bunx changeset publish --tag canary
- name: 🚀 Create and publish versions
uses: changesets/action@master
with:
version: bun run changeset version --snapshot canary
commit: "chore: update versions"
title: "chore: update versions"
publish: bun run changeset publish --tag canary
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand All @@ -90,16 +87,13 @@ jobs:
- name: 🏗️ Build
working-directory: packages/react-email
run: bun run build
- name: 🔧 Configure Git
run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
- name: 📝 Create and publish versions
working-directory: packages/react-email
run: |
bunx changeset version
git commit -am "chore: update versions"
bunx changeset publish --tag canary
- name: 🚀 Create and publish versions
uses: changesets/action@master
with:
version: bun run changeset version --snapshot canary
commit: "chore: update versions"
title: "chore: update versions"
publish: bun run changeset publish --tag canary
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
1 change: 1 addition & 0 deletions packages/action/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@languine/action",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"octokit": "^4.0.2",
Expand Down
8 changes: 0 additions & 8 deletions packages/react-email/.changeset/README.md

This file was deleted.

11 changes: 0 additions & 11 deletions packages/react-email/.changeset/config.json

This file was deleted.

1 change: 1 addition & 0 deletions packages/react-email/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ export function WelcomeEmail({ locale, name }) {

Add your translation files in the `locales` folder.


```json
{
"preview": "Welcome to our app!",
Expand Down

0 comments on commit 226d8db

Please sign in to comment.