Skip to content
Snippets Groups Projects
Commit 0d645c40 authored by Donatus Herre's avatar Donatus Herre
Browse files

ci added

parent 2ae9d4a1
Branches
No related tags found
No related merge requests found
image: alpine:latest
pages:
stage: deploy
before_script:
- apk update && apk add bash
- apk add tree
script:
- mkdir public
- mv data public
- mv LICENSE public
- mv README.md public
- cd public
- tree . > ../tree.txt
- echo "<html><body><pre>" > index.html
- cat ../tree.txt >> index.html
- echo "</pre></body></html>" >> index.html
artifacts:
paths:
- public
expire_in: 1 week
only:
refs:
- master
changes:
- data/*
- LICENSE
- README.md
- .gitlab-ci.yml
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment