web-push-notifications 3.44.2 → 3.44.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitlab-ci.yml +3 -0
- package/ci/npm/Dockerfile +4 -1
- package/package.json +1 -1
package/.gitlab-ci.yml
CHANGED
|
@@ -82,6 +82,7 @@ Build:npm:
|
|
|
82
82
|
before_script:
|
|
83
83
|
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
|
|
84
84
|
script:
|
|
85
|
+
- ls -la
|
|
85
86
|
- >
|
|
86
87
|
docker build --pull
|
|
87
88
|
-t $CI_REGISTRY_IMAGE/npm:$CI_COMMIT_REF_SLUG-$CI_PIPELINE_ID
|
|
@@ -109,6 +110,8 @@ Release:npm:next:
|
|
|
109
110
|
stage: release
|
|
110
111
|
image: $CI_REGISTRY_IMAGE/npm:$CI_COMMIT_REF_SLUG-$CI_PIPELINE_ID
|
|
111
112
|
script:
|
|
113
|
+
- pwd
|
|
114
|
+
- ls -lah
|
|
112
115
|
- npm publish --tag next
|
|
113
116
|
when: manual
|
|
114
117
|
only:
|
package/ci/npm/Dockerfile
CHANGED
|
@@ -8,7 +8,8 @@ ARG NPM_TOKEN
|
|
|
8
8
|
|
|
9
9
|
ENV NPM_TOKEN=${NPM_TOKEN}
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
COPY output/npm /publish/
|
|
12
|
+
RUN echo "=== Files in /publish ===" && ls -lah /publish && echo "=== Recursive listing ===" && ls -R /publish
|
|
12
13
|
|
|
13
14
|
COPY .npmrc /publish/.npmrc
|
|
14
15
|
COPY package.json /publish/package.json
|
|
@@ -16,4 +17,6 @@ COPY package.json /publish/package.json
|
|
|
16
17
|
COPY README.md /publish/README.md
|
|
17
18
|
COPY LICENSE.md /publish/LICENSE.md
|
|
18
19
|
|
|
20
|
+
RUN echo "2=== Files in /publish ===" && ls -lah /publish && echo "1=== Recursive listing ===" && ls -R /publish
|
|
21
|
+
|
|
19
22
|
WORKDIR /publish
|