1.1.9 • Published 2 years ago

package-deployer v1.1.9

Weekly downloads
-
License
Apache 2.0
Repository
github
Last release
2 years ago

:zap: Quick Start

Run npm install package-deployer

:clap: Basic usage

Run deploy-pkg <package name> to deploy an automatic version locally. Here are available flags:

CLI argumentExplanation
--npm-access-tokenThe NPM access token. Required for NPM package deployments.
--npm-registryThe NPM registry. Default: registry.npmjs.org
--npm-scopeThe NPM scope. The scope of the NPM package. Default: ''
--github-access-tokenThe GitHub access token. Required for GitHub release deployments.
--github-ownerThe GitHub owner. Required for GitHub release deployments.
--github-repoThe GitHub repo. Required for GitHub release deployments.
--pretty-printPrinting data in a more "readable" format
--debugIf to print debug logs
--dry-runIf to release packages in a dry run

:fire: Integrate with GitHub actions

You can integrate with a GitHub action workflow using the 'package-deploy-bot' GitHub action:

deployment:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - name: Setting up the environment
      run: npm install
    - name: Deploying version
      uses: ./
      with:
        pkg_name: package-deployer
        pkg_managers: '[github, npm]'
        npm_registry: registry.npmjs.org
        npm_access_token: ${{secrets.NPM_AUTH_TOKEN}}
        github_access_token: ${{secrets.G_AUTH_TOKEN}}
        dry_run: true
        debug: true
ParametersExplanation
package_managersA list of package deployments. i.e. 'github, npm'. Available options are github, npm.
pkg_nameThe name of the package.
npm_access_tokenThe NPM access token. Required for NPM package deployments.
npm_registryThe NPM registry. Default: registry.npmjs.org
npm_scopeThe NPM scope. The scope of the NPM package. Default: ''
github_access_tokenThe GitHub access token. Required for GitHub release deployments.
github_ownerThe GitHub owner. Required for GitHub release deployments.
github_repoThe GitHub repo. Required for GitHub release deployments.
pretty_printPrinting data in a more "readable" format
debugIf to print debug logs
dry_runIf to release packages in a dry run
1.1.1

2 years ago

1.1.0

2 years ago

1.1.9

2 years ago

1.1.8

2 years ago

1.0.9

2 years ago

1.1.7

2 years ago

1.0.8

2 years ago

1.1.6

2 years ago

1.0.7

2 years ago

1.1.5

2 years ago

1.0.6

2 years ago

1.1.4

2 years ago

1.0.5

2 years ago

1.1.3

2 years ago

1.0.4

2 years ago

1.1.2

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.9.9

2 years ago

0.9.8

2 years ago

0.9.7

2 years ago

0.9.6

3 years ago