Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🩹🚇 Adapt to changed outputs in pyglotaran-examples GHA #273

Merged
merged 1 commit into from
Jun 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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-*
Loading