Skip to content

Commit 8fe9e32

Browse files
committed
Fix deploy directory
1 parent 9f0d299 commit 8fe9e32

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

.gitlab-ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,9 @@ pages:
5454
environment: sign # grant access to SIGNING_KEY and SIGNING_KEY_PASS project variables
5555
script:
5656
- 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
57+
- openssl dgst -sha256 -sign "$SIGNING_KEY" -passin "file:$SIGNING_KEY_PASS" -out web-bundle.zip.sign web-bundle.zip
58+
- unzip web-bundle.zip && mv web-bundle.zip web-bundle.zip.sign static/
6059
artifacts:
6160
expire_in: 20 minutes # safe to delete: https://gitlab.com/gitlab-org/gitlab/-/issues/36358#note_2232186823
6261
paths:
63-
- public
62+
- static

0 commit comments

Comments
 (0)