mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
f2049b9a13
Closes #12753
27 lines
656 B
YAML
27 lines
656 B
YAML
version: 2.1
|
|
setup: true
|
|
orbs:
|
|
continuation: circleci/continuation@1
|
|
jobs:
|
|
setup:
|
|
docker:
|
|
- image: cimg/go:1.21
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
command: |
|
|
export SKIP=$(git log -n 1 $CIRCLE_SHA1 --pretty=%B | grep -q "NOCIRCLECI" && echo "true" || echo "false")
|
|
echo "{\"skip\": $SKIP}" >> set-up-params.json
|
|
- continuation/continue:
|
|
parameters: set-up-params.json
|
|
configuration_path: .circleci/build.yml
|
|
|
|
workflows:
|
|
configure:
|
|
when:
|
|
and:
|
|
- matches:
|
|
pattern: "^release.+"
|
|
value: << pipeline.git.branch >>
|
|
jobs:
|
|
- setup
|