uniKey PCB #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: uniKey PCB | |
on: | |
push: | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+*' | |
workflow_dispatch: | |
jobs: | |
KiBot-Generation: | |
runs-on: ubuntu-latest # Don't change | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Generate gerber for uniKey | |
uses: INTI-CMNB/[email protected] | |
with: | |
config: .kibot.yaml | |
dir: gerber | |
board: kicad/uniKeyPCB.kicad_pcb | |
schema: kicad/uniKeyPCB.kicad_sch | |
- name: Zip Gerber files | |
run: | | |
zip -r --junk-paths uniKeyPCB.zip gerber | |
- name: GH Release | |
uses: softprops/[email protected] | |
with: | |
files: "*.zip" | |
draft: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |