Skip to content

chore: release v0.1.6 #9

chore: release v0.1.6

chore: release v0.1.6 #9

Workflow file for this run

name: Publish Package
on:
push:
tags:
- v*
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Set node 18
uses: actions/setup-node@v3
with:
registry-url: https://registry.npmjs.org/
node-version: 18
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm lint
- run: pnpm build
- run: cp package.json dist/ && cp README.md dist/ && cd dist && npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_SECRET}}
- run: npx conventional-github-releaser -p angular
env:
CONVENTIONAL_GITHUB_RELEASER_TOKEN: ${{secrets.GITHUB_TOKEN}}