-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
52 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,56 @@ | ||
name: 📦 Release Packages | ||
# name: 📦 Release Packages | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- 'apps/**' | ||
# on: | ||
# push: | ||
# branches: | ||
# - main | ||
# paths-ignore: | ||
# - 'apps/**' | ||
|
||
jobs: | ||
test: | ||
name: 🧪 Run tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: oven-sh/setup-bun@v1 | ||
with: | ||
bun-version: latest | ||
- name: 📦 Install dependencies | ||
run: bun install | ||
- name: 🔍 Run type checking | ||
run: bun run typecheck | ||
- name: 🔬 Run linting | ||
run: bun run lint | ||
- name: 🧪 Run unit tests | ||
run: bun run test | ||
# jobs: | ||
# test: | ||
# name: 🧪 Run tests | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# - uses: oven-sh/setup-bun@v1 | ||
# with: | ||
# bun-version: latest | ||
# - name: 📦 Install dependencies | ||
# run: bun install | ||
# - name: 🔍 Run type checking | ||
# run: bun run typecheck | ||
# - name: 🔬 Run linting | ||
# run: bun run lint | ||
# - name: 🧪 Run unit tests | ||
# run: bun run test | ||
|
||
create-release: | ||
name: 📦 Create Release | ||
needs: [test] | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: oven-sh/setup-bun@v1 | ||
with: | ||
bun-version: latest | ||
- name: 📦 Install dependencies | ||
run: bun install | ||
- name: 🏗️ Build packages | ||
run: bun turbo build --filter=languine --filter=@languine/react-email | ||
- name: 🔖 Create and publish versions | ||
uses: changesets/action@master | ||
with: | ||
version: bun run changeset version | ||
commit: "chore: update versions" | ||
title: "chore: update versions" | ||
publish: bun run changeset publish | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
# create-release: | ||
# name: 📦 Create Release | ||
# needs: [test] | ||
# runs-on: ubuntu-latest | ||
# permissions: | ||
# contents: write | ||
# pull-requests: write | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# with: | ||
# fetch-depth: 0 | ||
# - uses: oven-sh/setup-bun@v1 | ||
# with: | ||
# bun-version: latest | ||
# - name: 📦 Install dependencies | ||
# run: bun install | ||
# - name: 🏗️ Build packages | ||
# run: bun turbo build --filter=languine --filter=@languine/react-email | ||
# - name: 🔖 Create and publish versions | ||
# uses: changesets/action@master | ||
# with: | ||
# version: bun run changeset version | ||
# commit: "chore: update versions" | ||
# title: "chore: update versions" | ||
# publish: bun run changeset publish | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|