File: .github/workflows/npmpackage.js.yml

Recommend this page to a friend!
  Classes of John Romano D'Orazio   jQuery Clock Plugin   .github/workflows/npmpackage.js.yml   Download  
File: .github/workflows/npmpackage.js.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: jQuery Clock Plugin
Display a clock inside a dom element
Author: By
Last change:
Date: 1 month ago
Size: 669 bytes
 

Contents

Class file image Download
name: Publish Package to npmjs on: release: types: [published] workflow_dispatch: jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 # Setup .npmrc file to publish to npm - uses: actions/setup-node@v4 with: node-version: '20.x' registry-url: 'https://registry.npmjs.org' - run: | corepack enable yarn set version stable yarn echo 'npmAuthToken: "${{ secrets.NPM_TOKEN }}"' >> .yarnrc.yml echo 'npmPublishAccess: "public"' >> .yarnrc.yml yarn npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}