-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (34 loc) · 1.04 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
name: Publish Build
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
env:
NODE_OPTIONS: --max-old-space-size=4096
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- run: yarn install --frozen-lockfile
- run: yarn tsc
- run: yarn build:all
- run: ./scripts/build-dynamic-plugins.sh
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
title: Version Packages - plugins
version: yarn release:version
publish: yarn release:publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Upload dynamic plugin to release
run: ./scripts/upload-dynamic-plugins.sh '${{ steps.changesets.outputs.publishedPackages }}'
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}