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
Raw Normal View History

2023-01-14 00:21:01 +00:00
stages:
- First
- Second
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- workdir/
First:
stage: First
image:
name: docker:latest
entrypoint: ["/bin/sh", "-c"]
2023-01-13 23:24:27 +00:00
script:
2023-01-14 00:21:01 +00:00
- mkdir -p workdir
- echo "asdf" > workdir/r.txt
2023-01-13 15:19:09 +00:00
2023-01-14 00:21:01 +00:00
Second:
stage: Second
image: alpine
2023-01-13 22:52:21 +00:00
script:
2023-01-14 00:21:01 +00:00
- cat workdir/r.txt