Skip to content

feat(patchlogs): new patchlogs #222

feat(patchlogs): new patchlogs

feat(patchlogs): new patchlogs #222

Workflow file for this run

name: Release
on:
push:
branches:
- master
paths:
- build/*
- data/*
- package.json
jobs:
release:
name: Release
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.GH_TOKEN }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm test
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v2.6.0
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
with:
semantic_version: 17
branches: |
['master']