Skip to content

set permissions.contents to write #3

set permissions.contents to write

set permissions.contents to write #3

Workflow file for this run

name: πŸ€– KiCad Export
on:
push:
branches: ["**"]
permissions:
contents: write
env:
IMAGE_TAG: pipeline
defaults:
run:
working-directory: hardware/KiCad
jobs:
kicad-export:
name: πŸ€– KiCad Export
runs-on: ubuntu-latest
steps:
- name: πŸ›’ Checkout
uses: actions/checkout@v4
- name: πŸ‹ Build docker image
run: docker build --tag ${IMAGE_TAG} .pipeline
- name: 1️⃣ OpenMI
run: >
docker run --rm
-v "${PWD}/OpenMI:/workspace"
${IMAGE_TAG}
export OpenMI.kicad_sch
- name: 🐞 Debug
run: git status
- name: πŸ’¬ Commit & Push
uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
message: "docs: πŸ€– KiCad export"