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