v0.15.0 #18
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 CI | |
on: | |
release: | |
types: [published] | |
jobs: | |
publish-to-npm: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: ποΈ Checkout | |
uses: actions/checkout@v3 | |
- name: π¦ Setup pnpm | |
uses: pnpm/action-setup@v2 | |
- name: π§ Use Node.js v20.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: v20.x | |
cache: 'pnpm' | |
- name: π Install dependencies | |
run: pnpm install | |
- name: π§ Build package | |
run: pnpm build | |
- name: π Copy README | |
run: cp ./README.md ./dist/ | |
- name: π§ͺ Test | |
run: pnpm test | |
env: | |
CI: true | |
- name: π¦ Extract version | |
id: version | |
uses: olegtarasov/[email protected] | |
with: | |
tagRegex: 'v(.*)' | |
- name: π₯€ Set version from release | |
uses: reedyuk/[email protected] | |
with: | |
version: ${{ steps.version.outputs.tag }} | |
git-tag-version: false | |
package: 'dist/' | |
- name: π Create NPM config | |
working-directory: './dist/' | |
run: npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: π Publish package | |
working-directory: './dist/' | |
run: npm publish |