Skip to content

feat: add a post run hook for post deployments #39

feat: add a post run hook for post deployments

feat: add a post run hook for post deployments #39

Workflow file for this run

name: Release
on:
push:
branches:
- main
- beta
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Node
uses: actions/[email protected]
with:
node-version: 18
cache: yarn
- name: Install Dependencies
run: yarn install
- name: Build
run: yarn build
- name: Test
run: yarn test
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release