Skip to content

chore: update paths #21

chore: update paths

chore: update paths #21

Workflow file for this run

name: Deploy
on:
push:
branches: [ 'master' ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.SEMANTIC_RELEASE_PAT }}
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '20'
cache: 'yarn'
- name: Install deps (with cache)
uses: bahmutov/npm-install@v1
with:
install-command: yarn --frozen-lockfile --no-progress --ignore-scripts
- name: Release
run: yarn release
env:
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_PAT }}