Skip to content

Commit

Permalink
Attempt to get github actions creating releases again
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Krall committed Sep 17, 2023
1 parent e424b28 commit 6715531
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions .github/workflows/kibot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,7 @@ name: KiBot
on:
workflow_dispatch:
push:
paths:
- "*.kicad_sch"
- "*.kicad_pcb"
- "*.kicad_pro"
- "**/*kibot.yml"
pull_request:
paths:
- "*.kicad_sch"
- "*.kicad_pcb"
- "*.kicad_pro"
- "**/*kibot.yml"

env:
schema: "pipad.kicad_sch"
Expand Down Expand Up @@ -128,3 +118,21 @@ jobs:
${{env.dir}}/img/**
!${{env.dir}}/**/*.ogv
!${{env.dir}}/**/*.log
release:
needs: [render, gerbers, cad, docs]
runs-on: ubuntu-latest
steps:
- name: download all artifacts
uses: actions/download-artifact@v3.0.2
- name: create release
uses: softprops/action-gh-release@v1
with:
name: Release ${{ github.run_id }} (${{ github.sha }})
tag_name: v${{ github.run_id }}
files: |
pipad_cad
pipad_docs
pipad_gerbers
pipad_img

0 comments on commit 6715531

Please sign in to comment.