web-push-notifications 3.44.3 → 3.44.7
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 -1
- package/ci/npm/Dockerfile +4 -1
- package/package.json +1 -1
package/.gitlab-ci.yml
CHANGED
|
@@ -91,7 +91,7 @@ Build:npm:
|
|
|
91
91
|
- docker push $CI_REGISTRY_IMAGE/npm:$CI_COMMIT_REF_SLUG-$CI_PIPELINE_ID
|
|
92
92
|
only:
|
|
93
93
|
- /.*-prod$/
|
|
94
|
-
- /.*-next$/
|
|
94
|
+
- /.*-next$/
|
|
95
95
|
except:
|
|
96
96
|
- branches
|
|
97
97
|
|
|
@@ -110,6 +110,8 @@ Release:npm:next:
|
|
|
110
110
|
stage: release
|
|
111
111
|
image: $CI_REGISTRY_IMAGE/npm:$CI_COMMIT_REF_SLUG-$CI_PIPELINE_ID
|
|
112
112
|
script:
|
|
113
|
+
- pwd
|
|
114
|
+
- ls -lah /publish
|
|
113
115
|
- npm publish --tag next
|
|
114
116
|
when: manual
|
|
115
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
|