Skip to content

uniKey PCB

uniKey PCB #1

Workflow file for this run

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 }}