You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
477 B
18 lines
477 B
#!/usr/bin/env sh
|
|
|
|
cat << EOF >> content/_index.md
|
|
|
|
# THIS IS AN AUTOMATICALLY GENERATED STAGING BUILD AND MAY BE REPLACED!!!
|
|
|
|
- Repository: $CI_REPO
|
|
- Commit: $CI_COMMIT_SHA
|
|
- Commit branch: $CI_COMMIT_BRANCH
|
|
- Commit message: $CI_COMMIT_MESSAGE
|
|
- Commit pull request: $CI_COMMIT_PULL_REQUEST
|
|
- Commit source branch: $CI_COMMIT_SOURCE_BRANCH
|
|
- Commit target branch: $CI_COMMIT_TARGET_BRANCH
|
|
- Commit author: $CI_COMMIT_AUTHOR
|
|
- Build number: $CI_BUILD_NUMBER
|
|
|
|
EOF
|