Commit f646ae52 authored by nanahira's avatar nanahira

Update .gitlab-ci.yml

parent 78703bb6
Pipeline #39979 canceled with stages
......@@ -2,13 +2,29 @@ variables:
GIT_DEPTH: "1"
stages:
- build
- deploy
build:
stage: build
dependencies: []
script:
- mkdir -p dist
- cd closeup
- ls -1 > ../dist/filelist.txt
- cd ..
artifacts:
paths:
- dist/
upload:
stage: deploy
dependencies:
- build
tags:
- linux
script:
- aws s3 --endpoint=https://minio.moenext.com:9000 sync --delete closeup/ s3://mycard/ygopro2-closeup
- mv closeup dist/
- aws s3 --endpoint=https://minio.moenext.com:9000 sync --delete dist/ s3://mycard/ygopro2-closeup
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