Skip to content

This Action scans for a package.json file and reads the version number from that.

License

Notifications You must be signed in to change notification settings

karlludwigweise/npm-get-version-action

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

npm-get-version-action

This GitHub Action retrieves the package version from the package.json file and sets the version in step output values usable in your workflow file.

Example

To use this action in your project, use the following:

- name: get-npm-version
  id: package-version
  uses: martinbeentjes/[email protected]

The Action sets output variables called

  • full
  • minor and
  • major

which can be used in a following step by using ${{ steps.package-version.outputs.full}}.

If you are using a monorepo or otherwise have some packages in a subdirectory of your repo, add the path to the package.json as a parameter:

- name: get-npm-version
  id: package-version
  uses: martinbeentjes/[email protected]
  with:
    path: packages/<yourpackage>

About

This Action scans for a package.json file and reads the version number from that.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 75.0%
  • Dockerfile 25.0%