Skip to content

Commit

Permalink
fix path for KiCad_Outputs and add test workflow to release
Browse files Browse the repository at this point in the history
  • Loading branch information
mbtaylor1982 committed Nov 18, 2024
1 parent 1318fae commit 44a2849
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@ jobs:
build_firmware:
uses: ./.github/workflows/build.yml
secrets: inherit
test:
uses: ./.github/workflows/test.yml
secrets: inherit
create_release:
needs: [kicad_outputs, build_firmware]
needs: [kicad_outputs, build_firmware, test]
runs-on: ubuntu-latest

steps:
Expand All @@ -25,7 +28,7 @@ jobs:
- name: Copy, tag with version and create SHA256 checksum
run: |
mkdir -p releases
cp -r KiCad_Outputs.zip releases/KiCad_Outputs_${{ github.ref_name }}
cp -r KiCad_Outputs.zip ./releases/KiCad_Outputs_${{ github.ref_name }}
cp OutputFiles_10M16_${{ github.ref_name }}.zip/RESDMAC.pof ./releases/RESDMAC_10M16_${{ github.ref_name }}.pof
cp OutputFiles_10M04_${{ github.ref_name }}.zip/RESDMAC.pof ./releases/RESDMAC_10M04_${{ github.ref_name }}.pof
cp OutputFiles_10M02_${{ github.ref_name }}.zip/RESDMAC.pof ./releases/RESDMAC_10M02_${{ github.ref_name }}.pof
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- main
paths-ignore:
- '**.md'

workflow_call:
jobs:
testing:
runs-on: ubuntu-latest
Expand All @@ -34,7 +34,7 @@ jobs:
emoji: true
verbose: true
job-summary: true
click-to-expand: false
click-to-expand: true
# 4 Upload VCD Files
- name: upload vcd files
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 44a2849

Please sign in to comment.