ci: install unzip command
This commit is contained in:
parent
562ee901bb
commit
9ce45e3cab
1 changed files with 6 additions and 2 deletions
|
@ -133,18 +133,22 @@ review:
|
|||
environment:
|
||||
name: review/$CI_COMMIT_REF_NAME
|
||||
url: https://$CI_COMMIT_REF_SLUG.git.soapbox.pub
|
||||
before_script:
|
||||
- apt-get update -y && apt-get install -y unzip
|
||||
script:
|
||||
- mkdir -p dist
|
||||
- busybox unzip soapbox.zip -o -d dist
|
||||
- unzip soapbox.zip -o -d dist
|
||||
- npx -y surge dist $CI_COMMIT_REF_SLUG.git.soapbox.pub
|
||||
allow_failure: true
|
||||
|
||||
pages:
|
||||
stage: deploy
|
||||
before_script:
|
||||
- apt-get update -y && apt-get install -y unzip
|
||||
script:
|
||||
- mkdir -p public
|
||||
# artifacts are kept between jobs
|
||||
- busybox unzip soapbox.zip -o -d public
|
||||
- unzip soapbox.zip -o -d public
|
||||
variables:
|
||||
NODE_ENV: production
|
||||
artifacts:
|
||||
|
|
Loading…
Reference in a new issue