77 lines
2.2 KiB
YAML
77 lines
2.2 KiB
YAML
name: 🦋 Changesets Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- "**.md"
|
|
- ".github/CODEOWNERS"
|
|
- ".github/ISSUE_TEMPLATE/**"
|
|
|
|
jobs:
|
|
release:
|
|
name: 🦋 Changesets Release
|
|
runs-on: buildjet-16vcpu-ubuntu-2204
|
|
if: |
|
|
github.repository == 'triggerdotdev/trigger.dev'
|
|
outputs:
|
|
published_packages: ${{ steps.changesets.outputs.publishedPackages }}
|
|
published: ${{ steps.changesets.outputs.published }}
|
|
steps:
|
|
- name: 🛑 Cancel Previous Runs
|
|
uses: styfle/cancel-workflow-action@0.11.0
|
|
|
|
- name: ⬇️ Checkout repo
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: ⎔ Setup pnpm
|
|
uses: pnpm/action-setup@v2.2.4
|
|
with:
|
|
version: 7.18
|
|
|
|
- name: ⎔ Setup node
|
|
uses: buildjet/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
cache: "pnpm"
|
|
|
|
- name: Install Protoc
|
|
uses: arduino/setup-protoc@v3
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: 📥 Download deps
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: 📀 Generate Prisma Client
|
|
run: pnpm run generate
|
|
|
|
- name: 🔎 Type check
|
|
run: pnpm run typecheck
|
|
|
|
- name: 🔐 Setup npm auth
|
|
run: |
|
|
echo "registry=https://registry.npmjs.org" >> ~/.npmrc
|
|
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> ~/.npmrc
|
|
|
|
# This action has two responsibilities. The first time the workflow runs
|
|
# (initial push to the `main` branch) it will create a new branch and
|
|
# then open a PR with the related changes for the new version. After the
|
|
# PR is merged, the workflow will run again and this action will build +
|
|
# publish to npm.
|
|
- name: 🚀 PR / Publish
|
|
id: changesets
|
|
uses: changesets/action@v1
|
|
with:
|
|
version: pnpm run changeset:version
|
|
commit: "chore: Update version for release"
|
|
title: "chore: Update version for release"
|
|
publish: pnpm run changeset:release
|
|
createGithubReleases: false
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|