This repository has been archived on 2023-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
beatsaber-overlay/.gitlab-ci.yml

25 lines
315 B
YAML

stages:
- First
- Second
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- workdir/
First:
stage: First
image:
name: docker:latest
entrypoint: ["/bin/sh", "-c"]
script:
- mkdir -p workdir
- echo "asdf" > workdir/r.txt
Second:
stage: Second
image: alpine
script:
- cat workdir/r.txt