2022-11-08 14:32:30 -05:00
|
|
|
name: Release 5.x
|
2019-10-01 14:38:55 -05:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-11-08 14:37:46 -05:00
|
|
|
tags:
|
|
|
|
- '*'
|
2019-10-01 14:38:55 -05:00
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
name: Release
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-09-13 13:11:09 -05:00
|
|
|
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
|
2019-10-01 14:38:55 -05:00
|
|
|
- name: Use Node (latest)
|
2022-09-13 13:11:09 -05:00
|
|
|
uses: actions/setup-node@1f8c6b94b26d0feae1e387ca63ccbdc44d27b561 # tag=v2.5.1
|
2019-10-01 14:38:55 -05:00
|
|
|
with:
|
2022-11-08 14:30:07 -05:00
|
|
|
node-version-file: '.nvmrc'
|
2019-10-01 14:38:55 -05:00
|
|
|
- name: Install
|
2020-10-11 12:06:21 -05:00
|
|
|
run: yarn install
|
2019-10-01 14:38:55 -05:00
|
|
|
- name: Build
|
2023-01-19 16:53:05 -05:00
|
|
|
run: yarn build
|
2023-01-07 16:31:44 -05:00
|
|
|
- name: Types
|
|
|
|
run: yarn code:types
|
2021-04-09 03:13:42 -05:00
|
|
|
- name: Publish
|
|
|
|
run: sh scripts/publish.sh
|
|
|
|
env:
|
|
|
|
REGISTRY_AUTH_TOKEN: ${{ secrets.REGISTRY_AUTH_TOKEN }}
|
|
|
|
REGISTRY_URL: registry.npmjs.org
|
2023-01-19 16:53:05 -05:00
|
|
|
- name: Create release notes
|
|
|
|
run: sh scripts/github-release.sh
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|