Skip to content

Release new version #26

Release new version

Release new version #26

Workflow file for this run

name: Release new version
on: workflow_dispatch
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
registry-url: https://registry.npmjs.org/
- run: yarn
- run: yarn lint
- run: yarn build
- run: yarn test
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GIT_AUTHOR_NAME: "ci"
GIT_AUTHOR_EMAIL: "[email protected]"