-
Notifications
You must be signed in to change notification settings - Fork 1
120 lines (101 loc) · 3.32 KB
/
publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
name: 🚀 Publish
on:
push:
branches:
- main
repository_dispatch:
types: [publish-trigger]
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
# 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/action@v1
with:
title: "chore(publish): version packages 🦋"
publish: pnpm packages:publish
version: pnpm packages:version
commit: "chore(publish): version packages 🦋 [skip ci]"
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 @ibg 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',
});