8000 Split CI build, restore Cloudflare purge for datasheets by Serjlee · Pull Request #2153 · arduino/docs-content · GitHub
[go: up one dir, main page]

Skip to content

Split CI build, restore Cloudflare purge for datasheets #2153

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

Merged
merged 18 commits into from
Sep 10, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

< 8000 form class="js-file-filter-form" data-turbo="false" action="/" accept-charset="UTF-8" method="post">
Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix output path
  • Loading branch information
Serjlee committed Sep 9, 2024
commit 9c38d5f03ff1ed5e4a671cd043a99e3dde8405ee
7 changes: 5 additions & 2 deletions .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,11 @@ jobs:
- name: Render Datasheets
if: steps.cache.outputs.cache-hit != 'true'
run: |
cd ${GITHUB_WORKSPACE}/scripts/datasheet-rendering;./render-datasheets.sh
find ./content/hardware -type f -name "*-schematics.pdf" -exec cp {} ./static/resources/schematics/ \;
cd ${GITHUB_WORKSPACE}/scripts/datasheet-rendering
./render-datasheets.sh
cd $GITHUB_WORKSPACE
mkdir -p static/resources/datasheets
find ./content/hardware -type f -name "*-datasheet.pdf" -exec cp {} ./static/resources/datasheets/ \;

- name: Export artifact
uses: actions/upload-artifact@v4
Expand Down
0