Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

Add deprecation message to README (#210) #15

Add deprecation message to README (#210)

Add deprecation message to README (#210) #15

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
release:
name: Publish & Deploy
runs-on: ubuntu-latest
env:
CI: true
steps:
- name: Check out repo
uses: actions/checkout@main
with:
fetch-depth: 0
- name: Set up Node.js 14.x
uses: actions/setup-node@main
with:
node-version: 14.x
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Create Release Pull Request or Publish to npm
uses: changesets/action@b3300fad33b6ab794313da28d27424c0e2f78991
with:
publish: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.SEEK_OSS_CI_NPM_TOKEN }}