Skip to content

Commit

Permalink
merge from main
Browse files Browse the repository at this point in the history
  • Loading branch information
juliancoy committed Jan 17, 2024
2 parents 97026fa + 4b65e3d commit 594a72c
Show file tree
Hide file tree
Showing 2 changed files with 190 additions and 2,409 deletions.
24 changes: 24 additions & 0 deletions cloudbuild.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
steps:
# Install step
- name: 'python:3.11'
entrypoint: 'bash'
args:
- '-c'
- |
echo Installing system dependencies...
apt-get update
apt-get install -y graphviz
echo Installing Python dependencies...
pip install -r requirements.txt
echo Build started on `date`
echo Running export.py...
python export.py
# Artifacts
artifacts:
objects:
location: 'gs://bookofdoctrine/'
paths:
- 'build/**'
- 'build/graphs/**'
Loading

0 comments on commit 594a72c

Please sign in to comment.