Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(blog): include future-dated content when generating blog #2682

Merged
merged 1 commit into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ lint:

run-appengine:
cd gcp/appengine/frontend3 && npm install && npm run build
cd gcp/appengine/blog && hugo -d ../dist/static/blog
cd gcp/appengine/blog && hugo --buildFuture -d ../dist/static/blog
cd gcp/appengine && $(install-cmd) && GOOGLE_CLOUD_PROJECT=oss-vdb $(run-cmd) python main.py

run-appengine-staging:
cd gcp/appengine/frontend3 && npm install && npm run build
cd gcp/appengine/blog && hugo -d ../dist/static/blog
cd gcp/appengine/blog && hugo --buildFuture -d ../dist/static/blog
cd gcp/appengine && $(install-cmd) && GOOGLE_CLOUD_PROJECT=oss-vdb-test $(run-cmd) python main.py

run-api-server:
Expand Down
2 changes: 1 addition & 1 deletion gcp/appengine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ FROM gcr.io/oss-vdb/ci AS HUGO_BUILD
WORKDIR /build/blog
COPY gcp/appengine/blog ./

RUN hugo -d ../dist/static/blog
RUN hugo --buildFuture -d ../dist/static/blog

# OSV.dev site image
# Adapted from https://cloud.google.com/run/docs/quickstarts/build-and-deploy/deploy-python-service#writing
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "OSV's approach to data quality"
date: 2023-09-30T09:00:00Z
date: 2024-09-30T09:00:00Z
draft: false
author: Andrew Pollock and Charl de Nysschen
---
Expand Down
Loading