Skip to content

Commit

Permalink
🩹🚇 Adapt to changed outputs in pyglotaran-examples GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
s-weigand committed Jun 30, 2024
1 parent c53418c commit f80b103
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ jobs:
- name: Upload Example Plots Artifact
uses: actions/upload-artifact@v4
with:
name: example-plots-${{ matrix.example_name }}
path: ${{ steps.example-run.outputs.plots-path }}
name: example-notebooks-${{ matrix.example_name }}
path: ${{ steps.example-run.outputs.notebook-path }}

collect-artifacts:
name: "Collect artifacts and reupload as bundel"
Expand All @@ -64,18 +64,18 @@ jobs:
- name: Download All Artifacts
uses: actions/download-artifact@v4
with:
path: example-plots
pattern: example-plots-*
path: example-notebooks
pattern: example-notebooks-*
merge-multiple: true

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

- name: Delete Intermediate artifacts
uses: GeekyEggo/delete-artifact@v5
with:
name: example-plots-*
name: example-notebooks-*

0 comments on commit f80b103

Please sign in to comment.