We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30f285b commit 9c38d5fCopy full SHA for 9c38d5f
.github/workflows/deploy-staging.yml
@@ -43,8 +43,11 @@ jobs:
43
- name: Render Datasheets
44
if: steps.cache.outputs.cache-hit != 'true'
45
run: |
46
- cd ${GITHUB_WORKSPACE}/scripts/datasheet-rendering;./render-datasheets.sh
47
- find ./content/hardware -type f -name "*-schematics.pdf" -exec cp {} ./static/resources/schematics/ \;
+ cd ${GITHUB_WORKSPACE}/scripts/datasheet-rendering
+ ./render-datasheets.sh
48
+ cd $GITHUB_WORKSPACE
49
+ mkdir -p static/resources/datasheets
50
+ find ./content/hardware -type f -name "*-datasheet.pdf" -exec cp {} ./static/resources/datasheets/ \;
51
52
- name: Export artifact
53
uses: actions/upload-artifact@v4
0 commit comments