Skip to content

Publish

Publish #978

Workflow file for this run

name: Publish
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
test:
uses: ./.github/workflows/ci.yml
secrets: inherit
build:
needs:
- test
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: yarn
- run: yarn install --frozen-lockfiles
- run: yarn run semantic-release