Skip to content

docs: Post alpha release update on runners & README (#356) #19

docs: Post alpha release update on runners & README (#356)

docs: Post alpha release update on runners & README (#356) #19

Workflow file for this run

name: Release
on:
push:
branches:
- master
- alpha
- beta
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '12'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build the package
run: yarn build
- name: Release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release