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

33 lines
535 B
YAML
Raw Normal View History

image: node:latest
2022-07-21 20:33:20 -04:00
variables:
GIT_SUBMODULE_STRATEGY: recursive
2023-06-21 19:19:36 -04:00
build:
2023-06-21 19:11:28 -04:00
script:
- npm install
artifacts:
paths:
- node_modules/
2023-06-20 21:06:02 -04:00
2022-07-21 20:33:20 -04:00
test:
before_script:
- apt-get update -qq && apt-get install -y -qq hugo
2022-07-21 20:33:20 -04:00
script:
- hugo
except:
variables:
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
pages:
before_script:
- apt-get update -qq && apt-get install -y -qq hugo
2022-07-21 20:33:20 -04:00
script:
- hugo
artifacts:
paths:
- public
only:
variables:
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH