update #60
This file contains hidden or 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: Release | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/inti-cmnb/kicad9_auto_full:latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# export data | |
- name: run KiBot | |
uses: INTI-CMNB/KiBot@v2_k9 | |
with: | |
config: kibot.yaml | |
dir: . | |
schema: pcb/esp32stepper.kicad_sch | |
board: pcb/esp32stepper.kicad_pcb | |
- name: run FCBot | |
uses: asymworks/fcbot@v0 | |
with: | |
dir: cad | |
config: fcbot.yaml | |
project: cad/esp32stepper.FCStd | |
# commit output files | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
# commit_message: Automated Change | |
file_pattern: | |
'pcb/docs/bom/*.* pcb/docs/*.* pcb/docs/img/*.svg cad/*.stl cad/*.step cad/img/*.png' | |
# generate changelog | |
- name: Conventional Changelog Action | |
uses: TriPSs/conventional-changelog-action@v5 | |
with: | |
github-token: ${{ secrets.github_token }} | |
tag-prefix: 'v' | |
output-file: 'CHANGELOG.md' | |
# upload artifact | |
- run: rm pcb/fp-info-cache | |
- name: upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: esp32stepper | |
path: . | |
# upload to github release | |
- uses: xresloader/upload-to-github-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
file: "pcb/*fabpackage.zip" | |
tags: true | |
draft: true | |
branches: main |