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 6194937 commit e5d7867Copy full SHA for e5d7867
1 file changed
.github/workflows/kicad_action.yml
@@ -100,6 +100,12 @@ jobs:
100
if [ -f schematic.svg ]; then cp -f schematic.svg docs/schematic.svg || true; fi
101
if [ -f dev-board.step ]; then cp -f dev-board.step docs/dev-board.step; fi
102
103
+ - name: Show pending changes
104
+ if: github.ref == 'refs/heads/main'
105
+ run: |
106
+ git status --porcelain
107
+ ls -la docs || true
108
+
109
- name: Mark repo safe for git
110
if: github.ref == 'refs/heads/main'
111
run: |
@@ -111,8 +117,4 @@ jobs:
117
with:
112
118
commit_message: 'Update docs artifacts (schematic, PCB images, STEP) [skip ci]'
113
119
file_pattern: |
114
- docs/pcb.svg
115
- docs/pcb-3d.png
116
- docs/schematic.pdf
- docs/schematic.svg
- docs/dev-board.step
120
+ docs/**
0 commit comments