This repository has been archived on 2024-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
bird.tacowolf.net/.gitlab-ci.yml

29 lines
533 B
YAML
Raw Normal View History

image: debian
2022-07-21 20:33:20 -04:00
variables:
GIT_SUBMODULE_STRATEGY: recursive
2023-06-20 21:06:02 -04:00
before_script:
2023-06-20 21:17:26 -04:00
- apt install wget
2023-06-20 21:15:20 -04:00
- wget -O hugo.deb https://github.com/gohugoio/hugo/releases/download/v0.114.0/hugo_extended_0.114.0_linux-amd64.deb
- dpkg -i hugo.deb
2023-06-20 21:06:02 -04:00
- curl https://get.volta.sh | bash
- npm install
2022-07-21 20:33:20 -04:00
test:
script:
- hugo
except:
variables:
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
pages:
script:
- hugo
artifacts:
paths:
- public
only:
variables:
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH