Skip to content

Commit

Permalink
ci: Update uploaded artifact name in diff.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jakkra committed Nov 5, 2024
1 parent 437442c commit 6cab9a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,22 +25,22 @@ jobs:

- name: Create schematics diff
run: |
kicad-diff.py original/project/ZSWatch.kicad_sch modified/project/ZSWatch.kicad_sch --diff_mode red_green --all_pages --output_dir diff-schematics --no_reader --keep_pngs
kicad-diff.py original/project/ZSWatch.kicad_sch modified/project/ZSWatch.kicad_sch --diff_mode red_green --all_pages --output_dir diff-schematics --no_reader --keep_pngs --resolution 400
- name: Create layout diff
run: |
kicad-diff.py original/project/ZSWatch.kicad_pcb modified/project/ZSWatch.kicad_pcb --diff_mode red_green --all_pages --output_dir diff-layout --no_reader --keep_pngs
kicad-diff.py original/project/ZSWatch.kicad_pcb modified/project/ZSWatch.kicad_pcb --diff_mode red_green --all_pages --output_dir diff-layout --no_reader --keep_pngs --resolution 400
- name: Upload Layout Diff
uses: actions/upload-artifact@v4
with:
name: "diff-layout-master-${{ github.ref_name }}"
name: "diff-layout-${{ github.ref_name }}"
path: diff-layout
if-no-files-found: ignore

- name: Upload Schematics Diff
uses: actions/upload-artifact@v4
with:
name: "diff-schematics-master-${{ github.ref_name }}"
name: "diff-schematics-${{ github.ref_name }}"
path: diff-schematics
if-no-files-found: ignore

0 comments on commit 6cab9a0

Please sign in to comment.