Commit 1a17ee10 authored by Marcel Amirault's avatar Marcel Amirault

Merge branch 'patch-111' into 'master'

Fix CI/CD example. Single quote does not expand variables

See merge request gitlab-org/gitlab!40629
parents 498048f3 95d9520f
...@@ -308,7 +308,7 @@ stages: ...@@ -308,7 +308,7 @@ stages:
deploy: deploy:
stage: deploy stage: deploy
script: script:
- echo '//gitlab.com/api/v4/projects/${CI_PROJECT_ID}/packages/npm/:_authToken=${CI_JOB_TOKEN}'>.npmrc - echo "//gitlab.com/api/v4/projects/${CI_PROJECT_ID}/packages/npm/:_authToken=${CI_JOB_TOKEN}">.npmrc
- npm publish - npm publish
``` ```
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment