31 lines
1,016 B
YAML
31 lines
1,016 B
YAML
when:
|
|
- event: [tag]
|
|
|
|
steps:
|
|
cache-restore:
|
|
image: minio/mc
|
|
secrets: [access_key, secret_key]
|
|
commands:
|
|
- mc alias set minio https://minio.ragarock.moe $access_key $secret_key
|
|
- mc cp -quiet --recursive minio/yuno/cache-html/target target
|
|
failure: ignore
|
|
build:
|
|
image: git.ragarock.moe/silvana/yuno/rust:latest
|
|
environment: [CARGO_TERM_COLOR=always, CARGO_HOME=./.cargo-home]
|
|
commands:
|
|
- rustup default nightly
|
|
- rustup target add wasm32-unknown-unknown
|
|
- trunk build
|
|
upload:
|
|
image: minio/mc
|
|
secrets: [access_key, secret_key]
|
|
commands:
|
|
- mc alias set minio https://minio.ragarock.moe $access_key $secret_key
|
|
- mc cp -quiet --recursive dist/ minio/yuno/${CI_COMMIT_TAG}/
|
|
cache-upload:
|
|
image: minio/mc
|
|
secrets: [access_key, secret_key]
|
|
commands:
|
|
- mc alias set minio https://minio.ragarock.moe $access_key $secret_key
|
|
- mc cp -quiet --recursive target/ minio/yuno/cache-html/target
|
|
failure: ignore
|