chore(release): 6.1.6 #28
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish | |
on: | |
push: | |
tags: | |
- v*.*.* | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Node.js 14.x to publish to npmjs.org | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '14.x' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install Packages | |
run: yarn install --frozen-lockfile | |
- name: Build | |
run: yarn build | |
env: | |
CI: true | |
- name: Test | |
run: yarn run test:ci | |
env: | |
CI: true | |
- name: Generate Release Body | |
run: npx extract-changelog-release > RELEASE_BODY.md | |
- name: Publish to NPM | |
run: yarn publish --non-interactive | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Create GitHub Release | |
uses: ncipollo/release-action@v1 | |
with: | |
bodyFile: "RELEASE_BODY.md" | |
token: ${{ secrets.GITHUB_TOKEN }} |