Skip to content

Commit

Permalink
Merge pull request #2 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 ca4a209 + f7efbf7 commit f136fef
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 225 deletions.
26 changes: 16 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,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 @@ -114,7 +114,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 Down Expand Up @@ -142,21 +142,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 @@ -169,9 +169,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
215 changes: 0 additions & 215 deletions .github/workflows/ci.yml.bak

This file was deleted.

0 comments on commit f136fef

Please sign in to comment.