Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6d4ae9fad4 | ||
|
|
c1d482f9a8 | ||
|
|
dbfb4f2b93 |
17
.gitlab-ci.yml
Normal file
17
.gitlab-ci.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
pages:
|
||||
image:
|
||||
name: pandoc/alpine
|
||||
entrypoint: ["/bin/sh", "-c"]
|
||||
script:
|
||||
- mkdir -p public
|
||||
- echo '<meta name="google-site-verification" content="ooqaohCgAywtsa97hQcmfXVsc5ZlgQaKSnXvTkSSLGE" />' > header.html
|
||||
- pandoc -f markdown -t html -s README.md -o public/index.html --metadata title="NOIBW - Nix-Openwrt-ImageBuilder-Wrapper" --metadata keywords=nix,shell,openwrt,image,builder -H header.html
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
rules:
|
||||
- if: '$CI_COMMIT_TAG =~ /^v[0-9]+\.[0-9]+\.[0-9]$/'
|
||||
when: on_success
|
||||
allow_failure: false
|
||||
- when: manual
|
||||
allow_failure: true
|
||||
Reference in New Issue
Block a user