We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bd098c commit e412b2bCopy full SHA for e412b2b
.github/workflows/static.yml
@@ -143,6 +143,12 @@ jobs:
143
STATIC_JSON: ${{ steps.static.outputs.result }}
144
run: |
145
jq -r '.' <<<"$STATIC_JSON" > ./.static--generator/static.json
146
+ # Copy the user-defined content directory to the generator's directory.
147
+ - name: Copy "content" Directory to Generator
148
+ run: |
149
+ if [ -d "./content" ]; then
150
+ rsync -av ./content/ ./.static--generator/content/
151
+ fi
152
# Sync the user-defined overrides directory to the generator's directory.
153
- name: Syncing Overrides
154
0 commit comments