diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec6c62e..ae784bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -138,19 +138,19 @@ jobs: - name: Upload bill of materials files as artifact uses: actions/upload-artifact@v4 with: - name: bom + name: bom-${{ matrix.variant }} path: bom_files_compressed - name: Upload schematic files as artifact uses: actions/upload-artifact@v4 with: - name: schematics + name: schematics-${{ matrix.variant }} path: schematics - name: Upload schematic files as artifact uses: actions/upload-artifact@v4 with: - name: gerber_files + name: gerber_files-${{ matrix.variant }} path: gerber_files_compressed release: @@ -163,9 +163,15 @@ jobs: variant: [ 'default' ] steps: - name: Download manufacturing files artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: - path: ./manufacturing_files + path: artifacts + + - name: Merge artifacts + run: | + mkdir ./manufacturing_files + mv artifacts/*/* ./manufacturing_files + shell: bash - name: Display structure of downloaded files run: ls -R