-
Notifications
You must be signed in to change notification settings - Fork 143
44 lines (41 loc) · 1.43 KB
/
release.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
name: Blade Release
on:
workflow_dispatch:
push:
branches: [master]
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.CI_BOT_TOKEN }}
jobs:
release:
name: Release
runs-on: ubuntu-latest # nosemgrep: non-self-hosted-runner
steps:
- name: Checkout Codebase
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node v18
uses: actions/setup-node@v3
with:
node-version: 18.12.1
- name: Setup Cache & Install Dependencies
uses: ./.github/actions/install-dependencies
- name: Create Release Pull Request & Publish packages
id: changesets
uses: changesets/action@v1
if: github.event_name != 'workflow_dispatch' # only run on master merges
env:
GITHUB_TOKEN: ${{ secrets.CI_BOT_TOKEN }}
with:
publish: yarn release
commit: 'build(blade): update version'
title: 'build(blade): update version'
- name: Publish to public npm registry
if: steps.changesets.outputs.published == 'true' || github.event_name == 'workflow_dispatch' # run when the package is published via changeset or if a release is triggered manually.
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: yarn publish-npm
- name: Build Blade if not built by changeset
if: steps.changesets.outputs.published == 'false'
working-directory: packages/blade
run: yarn build