Comment build config
This commit is contained in:
11
.build.yml
11
.build.yml
@@ -17,29 +17,40 @@ triggers:
|
||||
environment:
|
||||
HUGO_VERSION: 0.139.3
|
||||
tasks:
|
||||
# Install Hugo + Bundler, and make all subsequent steps cd into site root
|
||||
- setup: |
|
||||
wget --quiet https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb
|
||||
sudo apt install -y ./hugo_extended_${HUGO_VERSION}_linux-amd64.deb
|
||||
sudo gem install bundler
|
||||
echo 'cd davideisinger.com' >> ~/.buildenv
|
||||
|
||||
# Spellcheck Markdown files
|
||||
- spelling: |
|
||||
npx cspell "content/**/*.md"
|
||||
|
||||
# Diff RSS template against Hugo default, make sure only differences are intentional
|
||||
- rss: |
|
||||
curl -s https://raw.githubusercontent.com/gohugoio/hugo/refs/tags/v$HUGO_VERSION/tpl/tplimpl/embedded/templates/_default/rss.xml \
|
||||
| diff - ./themes/v2/layouts/_default/rss.xml \
|
||||
| wc -l \
|
||||
| grep 7
|
||||
|
||||
# Start Ruby server for dithering images
|
||||
- dither: |
|
||||
cd bin/dither
|
||||
sudo bundle install
|
||||
ROOT=~/davideisinger.com/content \
|
||||
KEY=~/secret.key \
|
||||
bundle exec rackup -p 4567 -D
|
||||
|
||||
# Build site
|
||||
- hugo: |
|
||||
HUGO_PARAMS_GIT_COMMIT=$(git rev-parse HEAD) \
|
||||
DITHER_SERVER=http://localhost:4567 \
|
||||
hugo --minify
|
||||
find public -name "*.enc" -type f -delete
|
||||
|
||||
# Sync files to production server
|
||||
- deploy: |
|
||||
if [ "$(git rev-parse main)" != "$(git rev-parse HEAD)" ]; then \
|
||||
complete-build; \
|
||||
|
||||
Reference in New Issue
Block a user