We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f0d299 commit 8fe9e32Copy full SHA for 8fe9e32
1 file changed
.gitlab-ci.yml
@@ -54,10 +54,9 @@ pages:
54
environment: sign # grant access to SIGNING_KEY and SIGNING_KEY_PASS project variables
55
script:
56
- apk add --update --no-cache openssl unzip
57
- - mkdir public && mv web-bundle.zip public/
58
- - openssl dgst -sha256 -sign "$SIGNING_KEY" -passin "file:$SIGNING_KEY_PASS" -out public/web-bundle.zip.sign public/web-bundle.zip
59
- - cd public && unzip web-bundle.zip
+ - openssl dgst -sha256 -sign "$SIGNING_KEY" -passin "file:$SIGNING_KEY_PASS" -out web-bundle.zip.sign web-bundle.zip
+ - unzip web-bundle.zip && mv web-bundle.zip web-bundle.zip.sign static/
60
artifacts:
61
expire_in: 20 minutes # safe to delete: https://gitlab.com/gitlab-org/gitlab/-/issues/36358#note_2232186823
62
paths:
63
- - public
+ - static
0 commit comments