diff --git a/.github/workflows/deploy-production.yml b/.github/workflows/deploy-production.yml index 6c920f8340..46f5df7621 100644 --- a/.github/workflows/deploy-production.yml +++ b/.github/workflows/deploy-production.yml @@ -66,6 +66,7 @@ jobs: - name: Copy Static Files run: | mkdir -p static/resources/schematics static/resources/pinouts static/resources/models + find ./content/hardware -type f -name "*-schematics.pdf" -exec cp {} ./static/resources/schematics/ \; find ./content/hardware -type f -name "*-full-pinout.pdf" -exec cp {} ./static/resources/pinouts/ \; find ./content/hardware -type f -name "*-pinout.png" -exec cp {} ./static/resources/pinouts/ \; find ./content/hardware -type f -name "*-step.zip" -exec cp {} ./static/resources/models/ \; diff --git a/.github/workflows/deploy-staging.yml b/.github/workflows/deploy-staging.yml index ba16e2bf08..79425fc4c7 100644 --- a/.github/workflows/deploy-staging.yml +++ b/.github/workflows/deploy-staging.yml @@ -66,6 +66,7 @@ jobs: - name: Copy Static Files run: | mkdir -p static/resources/schematics static/resources/pinouts static/resources/models + find ./content/hardware -type f -name "*-schematics.pdf" -exec cp {} ./static/resources/schematics/ \; find ./content/hardware -type f -name "*-full-pinout.pdf" -exec cp {} ./static/resources/pinouts/ \; find ./content/hardware -type f -name "*-pinout.png" -exec cp {} ./static/resources/pinouts/ \; find ./content/hardware -type f -name "*-step.zip" -exec cp {} ./static/resources/models/ \;