-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attempt to get github actions creating releases again
- Loading branch information
Evan Krall
committed
Sep 17, 2023
1 parent
e424b28
commit eb837d0
Showing
1 changed file
with
16 additions
and
10 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
@@ -128,3 +118,19 @@ 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/[email protected] | ||
- name: create release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: | | ||
pipad_cad | ||
pipad_docs | ||
pipad_gerbers | ||
pipad_img |