generate_pdf.yml (517B)
1 name: Generate PDF 2 3 on: 4 push: 5 6 jobs: 7 export: 8 runs-on: ubuntu-latest 9 steps: 10 - uses: actions/checkout@v4 11 - uses: actions-for-kicad/setup-kicad@main 12 with: 13 version: '7.0' 14 - name: Export file 15 uses: actions-for-kicad/generate-kicad-files@v1.0 16 with: 17 file: './apple2.kicad_sch' 18 type: 'schematic_pdf' 19 - name: Upload 20 uses: actions/upload-artifact@v3 21 with: 22 name: 'apple2.pdf' 23 path: './apple2.pdf'