Commit e84b463e authored by nanahira's avatar nanahira

ci

parent ed3577c4
Pipeline #445 failed with stages
in 2 minutes and 1 second
stages:
- build
- deploy
variables:
GIT_DEPTH: "1"
build:
stage: build
tags:
- linux
image: node:buster-slim
script:
- apt update && apt -y install build-essential python3 tar
- npm ci
- npm run build
- cd dist
- tar zcfv ../output/gateway-selector-web.tar.gz *
- cd ..
artifacts:
paths:
- output/
upload_to_minio:
stage: deploy
dependencies:
- build
tags:
- linux
image: python
script:
- pip install -U awscli
- aws s3 --endpoint=https://minio.mycard.moe:9000 sync --delete output/ s3://mycard/gateway-selector-web
only:
- master
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment