Skip to content

Commit

Permalink
Merge pull request #3 from TU-Darmstadt-APQ/dependabot/github_actions…
Browse files Browse the repository at this point in the history
…/actions/upload-artifact-4

[gha] Bump actions/upload-artifact from 3 to 4
  • Loading branch information
PatrickBaus authored Dec 17, 2023
2 parents 8e6f14b + 58e93fe commit e412eab
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
targets: __NONE__ # Only run preflights

- name: Retrieve results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ERC_Output
path: generated
Expand All @@ -110,7 +110,7 @@ jobs:
targets: __NONE__ # Only run preflights

- name: Retrieve results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: DRC_Output
path: generated
Expand All @@ -136,21 +136,21 @@ jobs:
verbose: 0 # use 3 for debugging

- name: Upload bill of materials files as artifact
uses: actions/upload-artifact@v3
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@v3
uses: actions/upload-artifact@v4
with:
name: schematics
name: schematics-${{ matrix.variant }}
path: schematics

- name: Upload schematic files as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: gerber_files
name: gerber_files-${{ matrix.variant }}
path: gerber_files_compressed

release:
Expand All @@ -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
Expand Down

0 comments on commit e412eab

Please sign in to comment.