Skip to content

Commit

Permalink
Bump actions/upload-artifact from 3 to 4 (#234)
Browse files Browse the repository at this point in the history
Bumps
[actions/upload-artifact](https://github.com/actions/upload-artifact)
from 3 to 4.

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: s-weigand <[email protected]>
  • Loading branch information
dependabot[bot] and s-weigand authored Jan 7, 2024
1 parent 5e00cb9 commit 723f440
Showing 1 changed file with 26 additions and 2 deletions.
28 changes: 26 additions & 2 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,31 @@ jobs:
install_extras: false

- name: Upload Example Plots Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: example-plots
name: example-plots-${{ matrix.example_name }}
path: ${{ steps.example-run.outputs.plots-path }}

collect-artifacts:
name: "Collect artifacts and reupload as bundel"
runs-on: ubuntu-latest
needs: [run-examples]
steps:
- name: Download All Artifacts
uses: actions/download-artifact@v4
with:
path: example-plots
pattern: example-plots-*
merge-multiple: true

- name: Delete Intermediate artifacts
uses: geekyeggo/delete-artifact@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: example-plots-*

- name: Upload Example Plots Artifact
uses: actions/upload-artifact@v4
with:
name: example-plots
path: example-plots

0 comments on commit 723f440

Please sign in to comment.