Skip to content

feat(patchlogs): new patchlogs #251

feat(patchlogs): new patchlogs

feat(patchlogs): new patchlogs #251

Workflow file for this run

name: Release
on:
push:
branches:
- master
paths:
- build/*
- data/*
- package.json
concurrency:
group: ${{ github.workflow }}-${{ github.branch }}
cancel-in-progress: true
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GH_TOKEN }}
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: npm ci
- run: npm run lint
- run: npm test
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4.1.0
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
with:
branches: |
['master']