- Initialize the module
- Configure the pipeline
- Set up CI/CD variables
- Configure semantic-release
- Begin publishing releases
- Use the module in a project
Publish npm packages to the GitLab Package Registry using semantic-release
This guide demonstrates how to automatically publish npm packages to the GitLab Package Registry by using .
You can also view or fork the complete .
Run Install the following npm packages:
Add the following properties to the module’s Update the Add a Create a This example configures the pipeline with a single job, The default As part of publishing a package, semantic-release increases the version number in semantic-release pulls its configuration information from a Test the pipeline by creating a commit with a message like:
Push the commit to the default branch. The pipeline should create a new release ( To create a minor release, use a commit message like:
Or, for a breaking change:
More information about how commit messages are mapped to releases can be found in .
To use the published module, add an Initialize the module
npm init
. Name the module according to the Package Registry’s naming conventions. For example, if the project’s path is gitlab-examples/semantic-release-npm
, name the module @gitlab-examples/semantic-release-npm
.
npm install semantic-release @semantic-release/git @semantic-release/gitlab @semantic-release/npm --save-dev
package.json
:
{
"scripts": {
"semantic-release": "semantic-release"
},
"publishConfig": {
"access": "public"
},
"files": [ <path(s) to files here> ]
}
files
key with glob pattern(s) that selects all files that should be included in the published module. More information about files
can be found .
.gitignore
file to the project to avoid committing node_modules
:
node_modules
Configure the pipeline
.gitlab-ci.yml
with the following content:
default:
image: node:latest
before_script:
- npm ci --cache .npm --prefer-offline
- |
{
echo "@${CI_PROJECT_ROOT_NAMESPACE}:registry=${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/npm/"
echo "${CI_API_V4_URL#https?}/projects/${CI_PROJECT_ID}/packages/npm/:_authToken=\${CI_JOB_TOKEN}"
} | tee -a .npmrc
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- .npm/
workflow:
rules:
- if: $CI_COMMIT_BRANCH
variables:
NPM_TOKEN: ${CI_JOB_TOKEN}
stages:
- release
publish:
stage: release
script:
- npm run semantic-release
rules:
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
publish
, which runs semantic-release
. The semantic-release library publishes new versions of the npm package and creates new GitLab releases (if necessary).
before_script
generates a temporary .npmrc
that is used to authenticate to the Package Registry during the publish
job.
Set up CI/CD variables
package.json
. For semantic-release to commit this change and push it back to GitLab, the pipeline requires a custom CI/CD variable named GITLAB_TOKEN
. To create this variable:
GITLAB_TOKEN
.
Configure semantic-release
.releaserc.json
file in the project. Create a .releaserc.json
at the root of the repository:
{
"branches": ["master"],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/gitlab",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": ["package.json"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
Begin publishing releases
fix: testing patch releases
v1.0.0
) on the project’s Releases page and publish a new version of the package to the project’s Package Registry page.
feat: testing minor releases
feat: testing major releases
BREAKING CHANGE: This is a breaking change.
Use the module in a project
.npmrc
file to the project that depends on the module. For example, to use @gitlab-examples:registry=https://gitlab.com/api/v4/packages/npm/