diff options
author | Sebastian <sebasjm@gmail.com> | 2021-04-15 10:25:58 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2021-04-15 10:26:05 -0300 |
commit | 7b87f01968bc712ddd4d33d6a9b37a77c6f6a0ad (patch) | |
tree | edfa51e2182439ffa336d6f35d9f503aa403a55c | |
parent | 3e705539b90c6e06112cecbf16de8e39b167d4fb (diff) |
missing npm install for workaround
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c873a6982..c2ecf44d0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,6 +19,7 @@ deploy-webext: script: - ./bootstrap - ./configure + - pnpm i - pnpm run -r prepare - make webextension - 'curl --header "JOB-TOKEN: $CI_JOB_TOKEN" @@ -32,6 +33,7 @@ deploy-npm: - npm config set '//gitlab.com/api/v4/projects/${CI_PROJECT_ID}/packages/npm/:_authToken' ${CI_JOB_TOKEN} - ./bootstrap - ./configure + - pnpm i - pnpm run -r prepare - make publish |