2019-10-01 14:38:55 -05:00
|
|
|
name: Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- '*'
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
name: Release
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-01-10 16:21:30 -05:00
|
|
|
- uses: actions/checkout@v2.4.0
|
2019-10-01 14:38:55 -05:00
|
|
|
- name: Use Node (latest)
|
2022-01-10 16:20:47 -05:00
|
|
|
uses: actions/setup-node@v2.5.1
|
2019-10-01 14:38:55 -05:00
|
|
|
with:
|
2021-03-26 12:04:19 -05:00
|
|
|
node-version: 14
|
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
|
|
|
|
run: yarn code:build
|
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
|
2021-08-20 01:28:41 -05:00
|
|
|
# FIXME: there is an issue where all the changelog is copied to the release notes (all versions)
|
|
|
|
# - name: Create release notes
|
|
|
|
# run: sh scripts/github-release.sh
|
|
|
|
# env:
|
|
|
|
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|