From 624cfdb117d81337db40e4997caa14e48a0d582a Mon Sep 17 00:00:00 2001 From: Sebastian Weigand Date: Sun, 30 Jun 2024 14:10:18 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=F0=9F=9A=87=20Adapt=20to=20changed?= =?UTF-8?q?=20outputs=20in=20pyglotaran-examples=20GHA=20(#273)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/integration-tests.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 9c0054f6..22e7af87 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -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" @@ -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-*