This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
1.2.1 Release #31
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: NPM Release | |
on: | |
release: | |
types: [created] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.release.target_commitish }} | |
- name: Validate and extract release information | |
id: release | |
uses: manovotny/github-releases-for-automated-package-publishing-action@v2.0.1 | |
- name: Set node version | |
uses: actions/setup-node@v3 | |
with: | |
always-auth: true | |
node-version: "16.x" | |
registry-url: "https://registry.npmjs.org" | |
- run: yarn | |
- run: yarn build | |
- name: Publish version | |
if: steps.release.outputs.tag == '' | |
run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.npm_token }} | |
- name: Publish tagged version | |
if: steps.release.outputs.tag != '' | |
run: npm publish --tag ${{ steps.release.outputs.tag }} | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.npm_token }} |