Merge pull request #64 from builder-group/changeset-release/main #59
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
name: 🚀 Publish | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }} | |
jobs: | |
publish: | |
name: 🚀 Publish | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node-version: [lts/*] | |
pnpm-version: [latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: ⬇️ Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ env.GITHUB_TOKEN }} | |
fetch-depth: 0 | |
ref: 'main' | |
# Setup node | |
# https://github.com/actions/setup-node | |
- name: 🟢 Setup node ${{ matrix.node-version }} | |
id: setup-node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
# Setup pnpm & Install dependencies | |
# https://github.com/pnpm/action-setup?tab=readme-ov-file#use-cache-to-reduce-installation-time | |
- name: 🥡 Setup pnpm ${{ matrix.pnpm-version }} | |
id: setup-pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
# version: ${{ matrix.pnpm-version }} # Defined in package.json | |
run_install: false | |
- name: 🎈 Get pnpm store directory | |
id: get-pnpm-store-dir | |
run: | | |
echo "PNPM_STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- name: 🔆 Cache pnpm modules | |
id: cache-pnpm-modules | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.PNPM_STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: 🧩 Install Dependencies | |
id: install-deps | |
run: pnpm install | |
# Build | |
- name: 🏗️ Build | |
id: build-monorepo | |
shell: bash | |
run: pnpm build | |
# Publish | |
# https://github.com/changesets/action?tab=readme-ov-file#with-publishing | |
- name: 🦋 Creating .npmrc | |
run: | | |
cat << EOF > "$HOME/.npmrc" | |
//registry.npmjs.org/:_authToken=$NPM_TOKEN | |
EOF | |
env: | |
NPM_TOKEN: ${{ env.NPM_TOKEN }} | |
- name: 🦋 Create Publish Pull Request or Publish to npm | |
id: changesets | |
uses: changesets/[email protected] | |
with: | |
title: "[ci] version packages 🦋" | |
publish: pnpm packages:publish | |
version: pnpm packages:version | |
commit: "[ci] version packages 🦋 [skip ci]" | |
branch: "main" | |
env: | |
GITHUB_TOKEN: ${{ env.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ env.NPM_TOKEN }} | |
# Post Publish Actions | |
- name: 📣 Notify Discord | |
if: steps.changesets.outputs.published == 'true' | |
uses: tsickert/[email protected] | |
with: | |
webhook-url: ${{ env.DISCORD_WEBHOOK_URL }} | |
content: "New versions of @blgc were published!" | |
- name: 🔄 Merge main into develop | |
if: steps.changesets.outputs.published == 'true' | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
github.rest.repos.merge({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
base: 'develop', | |
head: 'main', | |
}); |